mirror of
https://github.com/TheOnlyZac/sly1.git
synced 2024-11-23 21:59:53 +00:00
34 lines
398 B
C
34 lines
398 B
C
/**
|
|
* @file oid.h
|
|
*
|
|
* @brief Object IDs.
|
|
*/
|
|
#ifndef OID_H
|
|
#define OID_H
|
|
|
|
#include "common.h"
|
|
|
|
/**
|
|
* @brief Object ID.
|
|
|
|
*/
|
|
enum OID {
|
|
OID_Unknown = 0x0,
|
|
OID__MERGED_STATICS = 0x1,
|
|
OID__VISIBILITY_MAP = 0x2,
|
|
OID__WORLD = 0x3,
|
|
OID__CAMERA = 0x4,
|
|
OID_jt = 0x5,
|
|
OID_bentley = 0x6,
|
|
OID_murray = 0x7,
|
|
|
|
// ...
|
|
|
|
OID_rat = 0x269
|
|
|
|
// ...
|
|
};
|
|
|
|
|
|
#endif // OID_H
|