Implement/match MxPresenter::StartAction (#126)

* Implement/match MxPresenter::StartAction

* Update mxpoint32.h
This commit is contained in:
Christian Semmler
2023-09-19 17:45:16 -04:00
committed by GitHub
parent 5617e0e044
commit 4bd67e4ae1
4 changed files with 41 additions and 11 deletions

20
LEGO1/mxpoint32.h Executable file
View File

@@ -0,0 +1,20 @@
#ifndef MXPOINT32_H
#define MXPOINT32_H
#include "mxtypes.h"
class MxPoint32
{
public:
MxPoint32() { }
MxPoint32(MxS32 p_x, MxS32 p_y)
{
this->m_x = p_x;
this->m_y = p_y;
}
MxS32 m_x;
MxS32 m_y;
};
#endif // MXPOINT32_H