프로젝트 기본 셋팅

- 레이아웃 수정, 폴더 정리, 깃이그노어 조건 추가
This commit is contained in:
Mingu Kim
2026-01-16 21:33:20 +09:00
parent f393ac0823
commit 6113091e60
28 changed files with 373 additions and 1155 deletions

View File

@@ -0,0 +1,16 @@
using UnityEngine;
public class HelloUnity : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
Debug.Log("Hello Unity!");
}
// Update is called once per frame
void Update()
{
}
}