Files
MMORPG/Assets/Scripts/Hello Unity.cs
Mingu Kim 6113091e60 프로젝트 기본 셋팅
- 레이아웃 수정, 폴더 정리, 깃이그노어 조건 추가
2026-01-16 21:33:20 +09:00

17 lines
307 B
C#

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()
{
}
}