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.

constants.h 328B

12345678910111213
  1. #pragma once
  2. namespace SwanCommon {
  3. static constexpr int TILE_SIZE = 32;
  4. static constexpr int TICK_RATE = 20;
  5. static constexpr int CHUNK_HEIGHT = 64;
  6. static constexpr int CHUNK_WIDTH = 64;
  7. static constexpr int PLACEHOLDER_RED = 245;
  8. static constexpr int PLACEHOLDER_GREEN = 66;
  9. static constexpr int PLACEHOLDER_BLUE = 242;
  10. }