Files
Leviathan/Library/Internal/source/mmo/ArOption.cpp
T
2026-06-01 12:46:52 +02:00

27 lines
504 B
C++

#include "../../include/mmo/ArOption.h"
// 가장 직관적인.. boolean matrix -_-
const int s_Matrix[VISIBLE_REGION_BOX_WIDTH][VISIBLE_REGION_BOX_WIDTH] =
{
/*
{ 0,1,1,1,0 },
{ 1,1,1,1,1 },
{ 1,1,1,1,1 },
{ 1,1,1,1,1 },
{ 0,1,1,1,0 }
*/
{ 0,0,1,1,1,0,0 },
{ 0,1,1,1,1,1,0 },
{ 1,1,1,1,1,1,1 },
{ 1,1,1,1,1,1,1 },
{ 1,1,1,1,1,1,1 },
{ 0,1,1,1,1,1,0 },
{ 0,0,1,1,1,0,0 },
};
// 한 region 의 길이를 정의한다.
int g_nRegionSize = 150;
volatile bool g_bUseRegionDebug = false;