mirror of
https://github.com/FriendshipIsEpic/FiE-Game.git
synced 2024-11-26 07:18:00 +01:00
17 lines
323 B
C#
17 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;
|
||
|
}
|
||
|
}
|
||
|
}
|