SupaLidlGame/Characters/Thinkers/Thinker.cs

10 lines
115 B
C#
Raw Normal View History

2023-06-03 18:21:46 -07:00
namespace SupaLidlGame.Characters.Thinkers;
public class Thinker
2022-11-10 20:29:53 -08:00
{
2023-06-03 18:21:46 -07:00
public virtual void Think()
2022-11-10 20:29:53 -08:00
{
}
}