21 lines
343 B
C#
21 lines
343 B
C#
|
|
namespace CryingSnow.FarmingIsland
|
|||
|
|
{
|
|||
|
|
public interface IProp
|
|||
|
|
{
|
|||
|
|
Location Location { get; }
|
|||
|
|
void Animate(bool instant, System.Action onFinished);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public enum Location
|
|||
|
|
{
|
|||
|
|
None,
|
|||
|
|
Farm,
|
|||
|
|
Fruit,
|
|||
|
|
Fish,
|
|||
|
|
Silo,
|
|||
|
|
Stall,
|
|||
|
|
Barn,
|
|||
|
|
Dock,
|
|||
|
|
Tower
|
|||
|
|
}
|
|||
|
|
}
|