HeavenStudioPlus/Assets/Scripts/Games/MarchingOrders/Cadet.cs

26 lines
461 B
C#

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