public Player(Texture2D texture, Area area) { this.texture = texture; width = texture.Width; height = texture.Height; GotoNewArea(area); }
public void GotoNewArea(Area area) { pos = area.AreaPath.Start; currentArea = area; }