summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2SpriteObj.h
blob: 0c554dd4ab469f69fbe3163121d536966c420232 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once
#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;
};