TestGame build

This commit is contained in:
2025-06-09 20:11:03 -05:00
parent 410b52c6bb
commit aae8ff5c3f
6 changed files with 140 additions and 21 deletions

View File

@@ -13,7 +13,7 @@ class LayerView : public JUI::Window
public:
LayerView() : JUI::Window()
{
this->SetTitle("Layers");
this->Title("Layers");
Name("LayerView");
scroller = new JUI::ScrollingRect(this->Content());

View File

@@ -127,7 +127,7 @@ protected:
/// @warning If the index is out of bounds, the returned coordinates might be invalid (e.g. negative)
Vector2i IndexToCell(int index) const;
inline int CellToIndex(int cx, int cy);
inline int CellToIndex(int cx, int cy) const;
/// Fill the tile-id lookup table with their respective partial-sprite bounding boxes.
void ComputeQuads();