Stardew_Valley_Mods/GeneralMods/CustomNPCFramework/Framework/ModularNPCS/Direction.cs

17 lines
267 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CustomNPCFramework.Framework.ModularNPCS
{
public enum Direction
{
up,
right,
down,
left
}
}