#pragma once #include namespace kurator { namespace sim { class Spawner { public: virtual ~Spawner() = default; virtual Transform get(int team) = 0; }; } // namespace sim } // namespace kurator