Style refactor omni/system components (#974)

* Style refactor omni/system components

* Fix

* Fix
This commit is contained in:
Christian Semmler
2024-05-30 15:03:43 -04:00
committed by GitHub
parent ac41854149
commit 76435d803f
16 changed files with 106 additions and 84 deletions

View 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