Add tickle states and implement/match MxPresenter::Tickle (#119)

* Implement/match MxPresenter::Tickle

* Remove space

* Explicit inline for aesthetics
This commit is contained in:
Christian Semmler
2023-09-04 18:33:38 -04:00
committed by GitHub
parent c7458211f3
commit 2b3f7cbfc1
4 changed files with 125 additions and 56 deletions

View File

@@ -10,6 +10,11 @@
class MxDSAction : public MxDSObject
{
public:
enum
{
Flag_Enabled = 0x20,
};
__declspec(dllexport) MxDSAction();
__declspec(dllexport) virtual ~MxDSAction();
@@ -42,9 +47,12 @@ public:
void AppendData(MxU16 p_unkLength, const char *p_unkData);
inline MxU32 GetFlags() { return this->m_flags; }
inline void SetFlags(MxU32 m_flags) { this->m_flags = m_flags; }
private:
MxU32 m_sizeOnDisk;
DWORD m_flags;
MxU32 m_flags;
DWORD m_startTime;
protected: