rts_game_backend/src/out_api/game_draw.hpp

14 lines
229 B
C++
Raw Normal View History

2021-04-06 19:31:54 +03:00
#include <cstdlib>
#include <utility>
2021-04-04 17:09:42 +03:00
#pragma once
namespace game_draw {
2021-04-06 19:31:54 +03:00
using std::size_t;
void drawAll();
void drawMenu(size_t width, size_t height);
void drawMap(size_t width, size_t height);
}