SupaLidlGame/Characters/Thinkers/Thinker.cs

11 lines
141 B
C#
Raw Normal View History

2022-11-10 20:29:53 -08:00
namespace SupaLidlGame.Characters.Thinkers
{
public class Thinker
{
public virtual void Think()
{
}
}
}