some fixes

This commit is contained in:
ProgramSnail 2021-04-06 19:31:54 +03:00
parent eea91417c9
commit 4f2bfac443
7 changed files with 85 additions and 32 deletions

View file

@ -1,5 +1,13 @@
#include <cstdlib>
#include <utility>
#pragma once
namespace game_draw {
void draw();
}
using std::size_t;
void drawAll();
void drawMenu(size_t width, size_t height);
void drawMap(size_t width, size_t height);
}