Ejemplo n.º 1
0
 public MapDataStep(string music, int timeLimit, Map.SightRange tileSight, Map.SightRange charSight)
 {
     Music     = music;
     TimeLimit = timeLimit;
     TileSight = tileSight;
     CharSight = charSight;
 }
Ejemplo n.º 2
0
 protected SetSightEvent(SetSightEvent other)
 {
     CharSight = other.CharSight;
     Sight     = other.Sight;
 }
Ejemplo n.º 3
0
 public SetSightEvent(bool charSight, Map.SightRange sight)
 {
     CharSight = charSight;
     Sight     = sight;
 }