mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 16:34:06 +00:00
Implement/match MxPresenter::StartAction (#126)
* Implement/match MxPresenter::StartAction * Update mxpoint32.h
This commit is contained in:

committed by
GitHub

parent
5617e0e044
commit
4bd67e4ae1
20
LEGO1/mxpoint32.h
Executable file
20
LEGO1/mxpoint32.h
Executable 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
|
Reference in New Issue
Block a user