mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-04-20 05:29:41 +00:00
init: add project
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
using Assets._Project.Develop.Runtime.Infrastructure;
|
||||
using Assets._Project.Develop.Runtime.Infrastructure.DI;
|
||||
using Assets._Project.Develop.Runtime.Utilities.SceneManagement;
|
||||
using System.Collections;
|
||||
|
||||
namespace Assets._Project.Develop.Runtime.Meta.Infrastructure
|
||||
{
|
||||
public class MainMenuBootstrap : SceneBootstrap
|
||||
{
|
||||
private DIContainer _container;
|
||||
|
||||
public override void ProcessRegistrations(DIContainer container, IInputSceneArgs sceneArgs = null)
|
||||
{
|
||||
_container = container;
|
||||
|
||||
MainMenuContextRegistrations.Process(_container);
|
||||
}
|
||||
|
||||
public override IEnumerator Initialize()
|
||||
{
|
||||
yield break;
|
||||
}
|
||||
|
||||
public override void Run()
|
||||
{ }
|
||||
|
||||
private void Update()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user