Files

12 lines
211 B
C#
Raw Permalink Normal View History

2020-01-11 07:32:13 +01:00
using UnityEngine;
using System;
namespace LowPolyAnimalPack
{
[Serializable]
public class AnimalState
{
public string stateName = "New State";
public string animationBool = string.Empty;
}
}