유니티 2D

Hello World

ruripanda 2024. 8. 12. 11:14

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HelloWorld
{
    internal class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World");
        }
    }
}

'유니티 2D' 카테고리의 다른 글

2D 타일 만들기  (0) 2024.10.12
미니테스트2  (0) 2024.08.12
1일차 미니테스트  (0) 2024.08.12