Files
Editor2D/include/TileLayer.hpp
2025-05-12 21:26:34 -05:00

16 lines
178 B
C++

#pragma once
struct TileCell {
};
class TileLayer {
public:
int rows;
int cols;
int cell_width;
int cell_height;
TileCell cells[][];
protected:
private:
};