인풋매니저, 리소스매니저 구조 생성 및 리소스 정리

This commit is contained in:
2026-01-21 00:47:45 +09:00
parent de039d4ffb
commit 2eee8e2ab2
1036 changed files with 713 additions and 3137 deletions

View File

@@ -0,0 +1,20 @@
using System;
using UnityEngine;
public class InputManager
{
public Action KeytAction = null;
public void OnUpdate()
{
if (Input.anyKey == false)
{
return;
}
if (KeytAction != null)
{
KeytAction.Invoke();
}
}
}