Ejemplo n.º 1
0
 public Handling(FejlType type, Vector2 position)
 {
     Type = type;
     Position = position;
 }
Ejemplo n.º 2
0
 public Handling(FejlType type, Vector2 position, GameTime gameTime)
 {
     Type = type;
     Position = position;
 }
Ejemplo n.º 3
0
 private void CreateForetog(FejlType type, int r, int c)
 {
     if (GlobalValues.optionsWrapper.Bane != null && GlobalValues.optionsWrapper.Bane.Name != "")
     {
         FileHandler.Instance.AddMove(GlobalValues.optionsWrapper.Barn.Id,
                                      GlobalValues.optionsWrapper.Bane.Name,
                                      type,
                                      new Vector2(c, r),
                                      GetGameTime());
     }
 }