summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2SpriteObj.h
blob: 3fb83ff28af6f1aea93e6cd58ff66b956019c723 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef T2DLL_T2SPRITEOBJ_H
#define T2DLL_T2SPRITEOBJ_H
#include "../common.h"

class AFX_CLASS_EXPORT T2SpriteObj {
public:
	T2SpriteObj();
	~T2SpriteObj();

	T2ImageObj *mImageObj;
	CString mName;
	int mIndex;
	POINT mPosition;
	int mShowCount;
	SIZE mSize;
	int mPattern;
	int mLayer;
};
#endif