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.

WorldPlane.h 125B

12345678910
  1. #pragma once
  2. #include "common.h"
  3. class WorldPlane {
  4. public:
  5. void draw(Win &win);
  6. void update(float dt);
  7. void tick();
  8. };