blob: 58bc9301a824ccfab73c17d398c6c144152b0b53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// Dodge state
/// </summary>
public class DodgeState : StateBase
{
public DodgeState()
{
}
}
|