diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-06-14 00:50:34 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-06-14 00:50:34 +0100 |
commit | 37e364b2c6cc7487a1c888d256a73e5337bb7189 (patch) | |
tree | eaf6e857382eef16c2dd940eb4125536fbe068bd /src/T2DLL/UT2Coordinate.cpp | |
download | t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.tar.gz t2win-37e364b2c6cc7487a1c888d256a73e5337bb7189.zip |
initial commit
Diffstat (limited to 'src/T2DLL/UT2Coordinate.cpp')
-rw-r--r-- | src/T2DLL/UT2Coordinate.cpp | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/src/T2DLL/UT2Coordinate.cpp b/src/T2DLL/UT2Coordinate.cpp new file mode 100644 index 0000000..4c1323e --- /dev/null +++ b/src/T2DLL/UT2Coordinate.cpp @@ -0,0 +1,94 @@ +#include "UT2Coordinate.h" + +/*static*/ void UT2Coordinate::UnitToQD(int&, int&, int) { +} + +/*static*/ void UT2Coordinate::UnitToQD(POINT&, int, int) { +} + +/*static*/ void UT2Coordinate::UnitToQD(RECT&, int, int) { +} + +/*static*/ void UT2Coordinate::UnitToQD(const RECT&, RECT&, int, int) { +} + +/*static*/ void UT2Coordinate::UnitToQDRoof(const RECT&, RECT&, int) { +} + +/*static*/ void UT2Coordinate::UnitToQDFloor(const RECT&, RECT&, int) { +} + +/*static*/ void UT2Coordinate::UnitToOffRect(const RECT&, RECT&, int) { +} + +/*static*/ void UT2Coordinate::QDToUnit(int&, int&, int) { +} + +/*static*/ void UT2Coordinate::QDToUnit(POINT&, int) { +} + +/*static*/ void UT2Coordinate::QDToUnit(SDimension16&, int) { +} + +/*static*/ void UT2Coordinate::QDToUnit(RECT&, int) { +} + +/*static*/ void UT2Coordinate::QDToUnit(const RECT&, RECT&, int) { +} + +/*static*/ void UT2Coordinate::NoRoofQDToUnit(const RECT&, RECT&, int) { +} + +/*static*/ void UT2Coordinate::BkgndToQD(int&, int&, int) { +} + +/*static*/ void UT2Coordinate::BkgndToQD(POINT&, int) { +} + +/*static*/ void UT2Coordinate::BkgndToQD(RECT&, int) { +} + +/*static*/ void UT2Coordinate::BkgndToQD(const RECT&, RECT&, int) { +} + +/*static*/ void UT2Coordinate::QDToBkgnd(int&, int&, int) { +} + +/*static*/ void UT2Coordinate::QDToBkgnd(POINT&, int) { +} + +/*static*/ void UT2Coordinate::QDToBkgnd(SDimension16&, int) { +} + +/*static*/ void UT2Coordinate::QDToBkgnd(RECT&, int) { +} + +/*static*/ void UT2Coordinate::QDToBkgnd(const RECT&, RECT&, int) { +} + +/*static*/ void UT2Coordinate::UnitToBkgnd(const RECT&, RECT&) { +} + +/*static*/ void UT2Coordinate::BkgndToUnit(const RECT&, RECT&) { +} + +/*static*/ void UT2Coordinate::MakeRect(RECT&, const POINT&, const SDimension16&) { +} + +/*static*/ void UT2Coordinate::MakeRect(RECT&, const POINT&, int, int) { +} + +/*static*/ void UT2Coordinate::MakeRect(RECT&, int, int) { +} + +/*static*/ void UT2Coordinate::MakeCenterRect(RECT&, const POINT&, int, int) { +} + +/*static*/ void UT2Coordinate::AddRect(RECT&, const RECT&) { +} + +/*static*/ void UT2Coordinate::SubRect(RECT&, const RECT&) { +} + +/*static*/ void UT2Coordinate::ZoomOut(RECT&, int) { +} |