[학원 Unity]/[게임 알고리즘]

Hello World!

롤링페이퍼 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("helloWorld");
        }
    }
}

'[학원 Unity] > [게임 알고리즘]' 카테고리의 다른 글

Delegate (대리자)  (0) 2024.08.13
2일차 인벤토리 만들기  (0) 2024.08.13
1일차 과제(2)  (0) 2024.08.12
1일차 과제(1) 미완성  (0) 2024.08.12
1일차 미니테스트  (0) 2024.08.12