init: Unity 6 프로젝트 초기 설정

Unity 6000.4.0f1, URP 2D 프로젝트 초기 구조.
CLAUDE.md, .gitignore 포함.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-13 14:23:28 +09:00
commit 0fd08132d5
50 changed files with 6455 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using UnityEngine;
public class NewMonoBehaviourScript : MonoBehaviour
{
// Start is called once before the first execution of Update after the MonoBehaviour is created
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}