23 lines
426 B
C
23 lines
426 B
C
#pragma once
|
|
|
|
#pragma warning(disable:4786) // character 255 넘어가는거 끄기
|
|
|
|
//#include <crtdbg.h>
|
|
#include <granny.h>
|
|
|
|
#include "../eterBase/Utils.h"
|
|
#include "../eterBase/Debug.h"
|
|
#include "../eterBase/Stl.h"
|
|
|
|
#include "Util.h"
|
|
|
|
// Armadillo nanomite protection
|
|
#if !defined(NANOBEGIN) && !defined(NANOEND)
|
|
#ifdef _DEBUG
|
|
#define NANOBEGIN
|
|
#define NANOEND
|
|
#else
|
|
#include <armadillo/SecuredSections.h>
|
|
#endif
|
|
#endif
|