#pragma once #include "System.h" #include #include "Component.h" #include "Entity.h" namespace BECS { struct World { private: std::vector systems; std::vector components; std::vector entities; }; }