Example #1
0
 public Room(string name, Timeline timeline)
     : base(name, timeline)
 {
     Name = name;
     ThingType = ThingTypes.Room;
     IsEnterable = true;
 }
Example #2
0
 public Microchip(string name, Timeline timeline)
     : base(name, timeline)
 {
     DisplayName = "Microchip";
     Description = "It's hard to examine while it's still stuck in your neck";
     Location = "protruding out of your neck";
     IsDiscovered = false;
 }
Example #3
0
 public Player(string name, Timeline timeline)
     : base(name, timeline)
 {
 }
Example #4
0
 protected override void AttachWorldEvents(Timeline timeline)
 {
     Timeline.PlayerFirstInspected += Timeline_PlayerFirstInspected;
     Timeline.MicrochipFirstTaken += Timeline_MicrochipFirstTaken;
 }
Example #5
0
 public Item(string name, Timeline timeline)
     : base(name, timeline)
 {
     ThingType = ThingTypes.Item;
 }