mapFile(API)

提供: Eospedia
2014年5月20日 (火) 02:55時点におけるKinoshita (トーク | 投稿記録)による版

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

DataManip/mapFilemapファイルのためのAPI です。

定数

構造体

typedef struct mapFileShortCoord {
	short x;
	short y;
	short z;
} mapShortCoord;
typedef struct mapFileHeader {
	mapShortCoord Start;
	mapShortCoord N;
	mapShortCoord M;
	mapShortCoord Length;
	mapShortCoord Angle;
	short prod;
	short plus;
	short i1;
	short i2;
	short dummy[256-19];
} mapFileHeader;
typedef struct mapFile {
	mapFileHeader Header;
	unsigned char* Image;
} mapFile;

API