A 2D tile-based sandbox game.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Tile.h 132B

1234567891011121314
  1. #pragma once
  2. #include <stdint.h>
  3. namespace Swan {
  4. class Tile {
  5. public:
  6. using TileID = uint16_t;
  7. Tile(std::string name);
  8. };
  9. }