17 lines
385 B
C#
17 lines
385 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using System.Linq;
|
||
|
using UnityEngine.Events;
|
||
|
using Cysharp.Threading.Tasks;
|
||
|
namespace BITKit.Entities
|
||
|
{
|
||
|
public class EntityLocomotion : EntityComponent
|
||
|
{
|
||
|
[Header(Constant.Header.Settings)]
|
||
|
|
||
|
[Header(Constant.Header.Components)]
|
||
|
public Animator animator;
|
||
|
|
||
|
}
|
||
|
}
|