Unity3D에서 DLL Library 를 사용하자. 01. Visual Studio DLL Project 생성하기- Win32 Console Application으로 생성 02. DLL(dynamic) 로 설정 - Empty project 체크 설정 03. Project Sources code 아래의 코드와 같이 작성. 아래 GetNum Project 는 동작하지 않는다. 다른 예제를 보고 수정하도록 함. #define EXPORT_API __declspec(dllexport) extern "C" { int EXPORT_API add( int a, int b) { return a+b; } void EXPORT_API GetNum( int n ) { n = 5; } } 04. Unity3D Project..