1
0
Fork 0
mirror of synced 2025-03-06 20:53:27 +01:00

Store Rooms instead of Playfields inside of Global

This commit is contained in:
niansa/tuxifan 2022-05-10 16:01:50 +02:00
parent 6273f4ec88
commit 45afcdee07

View file

@ -16,7 +16,7 @@
namespace World { namespace World {
class Playfield; struct Room;
} }
namespace Connection { namespace Connection {
@ -108,7 +108,7 @@ public:
struct Global { struct Global {
std::vector<std::shared_ptr<Client>> clients; std::vector<std::shared_ptr<Client>> clients;
std::vector<std::shared_ptr<World::Playfield>> playfields; std::vector<std::shared_ptr<World::Room>> rooms;
}; };