<feat> 스플래쉬 화면전환 및 프로그램 생성

This commit is contained in:
2025-10-14 16:38:35 +09:00
parent ded5366983
commit 9729128a8b
261 changed files with 2883116 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using UnityEngine;
public class AppManager : MonoBehaviour
{
[SerializeField] private ProgramView view;
void Start()
{
ProgramModel model = new ProgramModel();
ProgramPresenter presenter = new ProgramPresenter(model, view);
view.DisplayProgram(null);
}
}