endif
[C++] 파일 분할 관리, #ifndef, #endif
[C++] 파일 분할 관리, #ifndef, #endif
2022.04.03파일 분할 관리 인프런 Rookiss님의 'Part1: C++ 프로그래밍 입문' 강의를 기반으로 정리한 필기입니다. 😎[C++과 언리얼로 만드는 MMORPG 게임 개발 시리즈] Part1: C++ 프로그래밍 입문 강의 들으러 가기! 파일 분할 관리 Test1.h #pragma once // 헤더 파일이 실수로 중복해서 들어가는 상황을 대비해서 적어주자. // #ifndef _TEST1_H__ // #define _TEST1_H__ struct StatInfo { int hp; int attack; int defence; }; void Test_1(); void Test_2(); void Test_3() { } // #endif // #ifndef, define, endif 방식도 있다. Test1.cpp..