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

class AFX_CLASS_EXPORT T2PeopleAnimeDefElem {
public:
    T2PeopleAnimeDefElem();
    virtual ~T2PeopleAnimeDefElem();
    void Initialize(CResFile& resFile);
    void Set(T2People* people, int h);

private:
    int mFillerStart;
    int mFillerRange;
    int mHStart;
    int mHRange;
};
#endif