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.

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