UnitySerializedReferenceUI/Samples~/ExampleAnimalWorldAssembly/Animals/IAnimal.cs
2021-05-26 14:44:53 -04:00

5 lines
50 B
C#

public interface IAnimal
{
void Feed();
}