- removed all RTTI from the type table.

Using names is just as good as using types so now this is what's done.
This commit is contained in:
Christoph Oelckers 2017-04-13 15:44:51 +02:00
commit 988fe8d735
4 changed files with 72 additions and 73 deletions

View file

@ -118,7 +118,7 @@ IMPLEMENT_CLASS(PActorInfo, false, false)
void AddActorInfo(PClass *cls)
{
auto type = new PActorInfo;
TypeTable.AddType(type);
TypeTable.AddType(type, NAME_Actor);
cls->AddField("*", type, VARF_Meta);
}