Exemplo n.º 1
0
 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;
 }
Exemplo n.º 3
0
 public ShoppingListObject(DiscMappedObject parent, int offset, int id, int count) : base(parent, offset)
 {
     Id        = id;
     ItemCount = count;
 }
Exemplo n.º 4
0
 public EventPositionObject(DiscMappedObject parent, int offset, int id) : base(parent, offset)
 {
     Id = id;
 }