HeavenStudioPlus/Assets/Scripts/Games/Lockstep/StepSwitcher.cs

25 lines
406 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using HeavenStudio.Util;
namespace HeavenStudio.Games.Scripts_Lockstep
{
public class StepSwitcher : PlayerActionObject
{
// Start is called before the first frame update
void Awake()
{
}
// Update is called once per frame
void Update()
{
}
}
}