MushMachine/framework/engine/src/mm/engine_fwd.hpp

13 lines
232 B
C++
Raw Normal View History

#pragma once
// this is a forwarding header
#include <entt/fwd.hpp>
namespace MM {
namespace UpdateStrategies { class UpdateStrategy; }
class Engine;
using Entity = entt::entity;
using Scene = entt::basic_registry<Entity>;
}