mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-21 07:11:16 +00:00
17 lines
309 B
C++
17 lines
309 B
C++
#ifndef MXSIZE32_H
|
|
#define MXSIZE32_H
|
|
|
|
#include "mfc.h"
|
|
#include "mxtypes.h"
|
|
|
|
class MxSize32 : public CSize {
|
|
public:
|
|
MxSize32() {}
|
|
MxSize32(MxS32 p_width, MxS32 p_height) : CSize(p_width, p_height) {}
|
|
|
|
MxS32 GetWidth() const { return cx; }
|
|
MxS32 GetHeight() const { return cy; }
|
|
};
|
|
|
|
#endif // MXSIZE32_H
|