summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Avatar/Actions/ActionWipeCmdRecord.cs
blob: 5b4cfda3389715f334ef5add47f50dc2df480baa (plain)
1
2
3
4
5
6
7
8
9
10
11
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class ActionWipeCmdRecord : ActionBase
{
	public override void Execute()
	{
		_InputManager.Instance.CommandRecord.Clear();
	}
}