DolphinCGraphics nearly done

Former-commit-id: d065d80388
This commit is contained in:
2022-12-06 18:32:47 -05:00
parent b35b8b5e20
commit 341e73de06
17 changed files with 393 additions and 99 deletions

View File

@@ -10,6 +10,9 @@ public:
int GetX() const { return mX; }
int GetY() const { return mY; }
int& operator[](int idx) { return *(&mX + idx); }
const int& operator[](int idx) const { return *(&mX + idx); }
private:
int mX;
int mY;