public static uint GetVertexPointer(LevelscriptCommand cmd) { cmd.Position = 0x10; int value = cmd.ReadInt32(); return(Conversions.ToUInteger(value)); }
public static int GetRomStart(LevelscriptCommand Command) { Command.Position = 4; int value = Command.ReadInt32(); Command.Position = 0; return(value); }
public static int GetSegAddress(LevelscriptCommand Command) { Command.Position = 4; int SegGeolayoutAddr = Command.ReadInt32(); Command.Position = 0; return(SegGeolayoutAddr); }
public static int GetSegJumpAddr(LevelscriptCommand Command) { Command.Position = 4; int jumpaddr = Command.ReadInt32(); Command.Position = 0; return(jumpaddr); }