mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 08:24:16 +00:00
Style refactor omni/system components (#974)
* Style refactor omni/system components * Fix * Fix
This commit is contained in:

committed by
GitHub

parent
ac41854149
commit
76435d803f
21
LEGO1/omni/include/mxticklethread.h
Normal file
21
LEGO1/omni/include/mxticklethread.h
Normal file
@@ -0,0 +1,21 @@
|
||||
#ifndef MXTICKLETHREAD_H
|
||||
#define MXTICKLETHREAD_H
|
||||
|
||||
#include "mxthread.h"
|
||||
|
||||
// VTABLE: LEGO1 0x100dc6d8
|
||||
// SIZE 0x20
|
||||
class MxTickleThread : public MxThread {
|
||||
public:
|
||||
MxTickleThread(MxCore* p_target, MxS32 p_frequencyMS);
|
||||
|
||||
MxResult Run() override;
|
||||
|
||||
// SYNTHETIC: LEGO1 0x100b8c20
|
||||
// MxTickleThread::`scalar deleting destructor'
|
||||
|
||||
private:
|
||||
MxS32 m_frequencyMS; // 0x1c
|
||||
};
|
||||
|
||||
#endif // MXTICKLETHREAD_H
|
Reference in New Issue
Block a user