Key에 대한 이벤트 관련 처리 해줄 클래스와 Device.h에 있는 각종 헤더 선언을 미리 헤더 컴파일러로 만들어서 사용 1. stdafx.h 만들기 stdafx.h stdafx.cpp 생성 stdafx.cpp #include "stdafx.h" stdafx.h Device.h에 있는 각종 헤더 파일을 옮기기 더보기 #pragma once //Window #include #include //검사용 //STL #include //추가 #include #include using namespace std; //DX Lib #include #include #include #include #pragma comment(lib, "d3d11.lib") #pragma comment(lib, "d3dx11.lib") ..