Initial commit

This commit is contained in:
Mausham
2025-12-10 18:02:47 -08:00
commit 1014b82c22
251 changed files with 32297 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using JetBrains.Annotations;
using UnityEngine;
using VContainer;
using VContainer.Unity;
public class GameLifeTimeScope : LifetimeScope
{
[SerializeField] private InputReader inputReader;
protected override void Configure(IContainerBuilder builder)
{
builder.RegisterComponentInHierarchy<PlatformPool>();
builder.RegisterComponentInHierarchy<JumpingBall>();
builder.RegisterComponentInHierarchy<PlatformManager>();
builder.RegisterComponent<IInputReader>(inputReader);
}
public void IsWorking()
{
Debug.Log("True");
}
}