diff options
Diffstat (limited to 'Assets/Scripts/Avatar/States/DodgeState.cs')
-rw-r--r-- | Assets/Scripts/Avatar/States/DodgeState.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Assets/Scripts/Avatar/States/DodgeState.cs b/Assets/Scripts/Avatar/States/DodgeState.cs new file mode 100644 index 00000000..58bc9301 --- /dev/null +++ b/Assets/Scripts/Avatar/States/DodgeState.cs @@ -0,0 +1,16 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + + +/// <summary> +/// Dodge state +/// </summary> +public class DodgeState : StateBase +{ + public DodgeState() + { + + } + +} |