]> git.tdb.fi Git - libs/game.git/blob - source/game/handle.cpp
Implement a basic ECS
[libs/game.git] / source / game / handle.cpp
1 #include "handle.h"
2 #include <msp/debug/demangle.h>
3
4 using namespace std;
5
6 namespace Msp::Game {
7
8 invalid_handle::invalid_handle(const type_info &ti):
9         logic_error(Debug::demangle(ti.name()))
10 { }
11
12 } // namespace Msp::Game