12 lines
211 B
C#
12 lines
211 B
C#
|
|
using UnityEngine;
|
|||
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace LowPolyAnimalPack
|
|||
|
|
{
|
|||
|
|
[Serializable]
|
|||
|
|
public class AnimalState
|
|||
|
|
{
|
|||
|
|
public string stateName = "New State";
|
|||
|
|
public string animationBool = string.Empty;
|
|||
|
|
}
|
|||
|
|
}
|