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.

Context.h 89B

1234567891011
  1. #pragma once
  2. namespace Cygnet {
  3. class Context {
  4. public:
  5. Context();
  6. ~Context();
  7. };
  8. }