mirror of
https://github.com/MadeOfJelly/MushMachine.git
synced 2025-01-10 07:03:13 +01:00
13 lines
232 B
C++
13 lines
232 B
C++
#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>;
|
|
}
|
|
|