Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 14 additions & 6 deletions auxtools/src/raw_types/values.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ pub enum ValueTag {
AreaContents = 0x19,
WorldContents = 0x1A,
ObjContents = 0x1C,

DatumTypepath = 0x20,
Datum = 0x21,
SaveFile = 0x23,
ProcRef = 0x26,
File = 0x27,
Number = 0x2A,
MobVars = 0x2C,
ObjVars = 0x2D,
TurfVars = 0x2E,
Expand All @@ -44,6 +51,8 @@ pub enum ValueTag {
TurfUnderlays = 0x37,
AreaOverlays = 0x38,
AreaUnderlays = 0x39,
Appearance = 0x3A,
Pointer = 0x3C,
ImageOverlays = 0x40,
ImageUnderlays = 0x41,
ImageVars = 0x42,
Expand All @@ -55,13 +64,12 @@ pub enum ValueTag {
MobVisLocs = 0x50,
WorldVars = 0x51,
GlobalVars = 0x52,
Filters = 0x53,
ImageVisContents = 0x54,

Datum = 0x21,
SaveFile = 0x23,

Number = 0x2A,
Appearance = 0x3A
Alist = 0x55,
PixLoc = 0x56,
Vector = 0x57,
Callee = 0x58
}

impl fmt::Display for Value {
Expand Down
Loading