#pragma once #include "tinyengine/tinyengine.hpp" #include "game/quick_list.hpp" #include "game/init_info.hpp" extern Context ECSContext; extern SystemManager SystemMgr; extern Unique GameTileSheet; extern std::unordered_map> Sounds; extern QuickList Bullets; extern QuickList Entities; extern Entity* PlayerSpaceship; extern std::array, 4> Groups; extern GameInitInfo InitInfo; void LoadResources(); Point MapGlobal2PlayerCoord(const Point& pos); Point MapPlayerCoord2Global(const Point& pos);