public EventObject(DiscMappedObject parent, int offset) : base(parent, offset) { Id = ReadByte(EventOffsets.Id); EvaluateEventType(); if (IsGella) { Gella = ushort.MaxValue - ItemId + 1; } }
public EventDetailObject(DiscMappedObject parent, int offset, int id, int size) : base(parent, offset) { Id = id; Size = size; }
public ShoppingListObject(DiscMappedObject parent, int offset, int id, int count) : base(parent, offset) { Id = id; ItemCount = count; }
public EventPositionObject(DiscMappedObject parent, int offset, int id) : base(parent, offset) { Id = id; }