IndieGame/client/Assets/Scripts/System/OfficialStartGame.cs

16 lines
233 B
C#
Raw Normal View History

2024-10-11 10:12:15 +08:00

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Ether
{
public class OfficialStartGame : Singleton<OfficialStartGame>
{
public void OnStart()
{
}
}
}