-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpawnpoint.cs
39 lines (34 loc) · 970 Bytes
/
Spawnpoint.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using Microsoft.Xna.Framework;
using StardewValley;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SDVX3
{
public class Spawnpoint
{
public GameLocation Location { get; set; }
public Vector2 Position { get; set; }
public Spawnpoint(string location, int x, int y)
{
Location = Game1.getLocationFromName(location);
Position = new Vector2(x, y);
}
public void PlaceItem(SimpleObject item)
{
Location.objects.Add(Position, item);
}
public bool isClear()
{
if (Location.objects.ContainsKey(Position)) return false;
if (!Location.isTileLocationTotallyClearAndPlaceable(Position)) return false;
return true;
}
public void AttemptToClear()
{
Location.objects.Remove(Position);
}
}
}