mirror of
https://github.com/halpz/re3.git
synced 2025-07-29 21:00:24 +00:00
first commit
This commit is contained in:
18
src/modelinfo/TimeModelInfo.h
Normal file
18
src/modelinfo/TimeModelInfo.h
Normal file
@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
|
||||
#include "SimpleModelInfo.h"
|
||||
|
||||
class CTimeModelInfo : public CSimpleModelInfo
|
||||
{
|
||||
int32 m_timeOn;
|
||||
int32 m_timeOff;
|
||||
int32 m_otherTimeModelID;
|
||||
public:
|
||||
CTimeModelInfo(void) : CSimpleModelInfo(MITYPE_TIME) { m_otherTimeModelID = -1; }
|
||||
|
||||
int32 GetTimeOn(void) { return m_timeOn; }
|
||||
int32 GetTimeOff(void) { return m_timeOff; }
|
||||
int32 GetOtherTimeModel(void) { return m_otherTimeModelID; }
|
||||
CTimeModelInfo *FindOtherTimeModel(void);
|
||||
};
|
||||
static_assert(sizeof(CTimeModelInfo) == 0x58, "CTimeModelInfo: error");
|
Reference in New Issue
Block a user