Files
Yanis 59a312e30a Start MapObject documentation (#47)
* set the right base class size

* actor and map object changes

* rename id getters functions

* document unknown file system used in mapobjectprofile

* start to document MapObjectProfile
2026-04-13 18:55:04 +02:00

13 lines
232 B
C++

#pragma once
#include "types.h"
#include "versions.h"
typedef u32 ActorId;
enum ActorId_ {
ActorId_None = 0,
#define DEFINE_ACTOR_TYPE(id, name) ActorId_##name = id,
#include "Actor/ActorTable.inl"
#undef DEFINE_ACTOR_TYPE
};