mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-22 13:58:00 +01:00
16 lines
323 B
C#
16 lines
323 B
C#
using Fie.Manager;
|
|
|
|
public class FieTitleBootManager : FieManagerBehaviour<FieTitleBootManager>
|
|
{
|
|
private bool _isInitialized;
|
|
|
|
private void Start()
|
|
{
|
|
FieManagerBehaviour<FieTitleBootManager>.I.StartUp();
|
|
if (!_isInitialized)
|
|
{
|
|
FieManagerBehaviour<FieGUIManager>.I.StartUp();
|
|
_isInitialized = true;
|
|
}
|
|
}
|
|
}
|