15 lines
174 B
C
15 lines
174 B
C
#pragma once
|
|
|
|
#include <mmo/ArType.h>
|
|
#include "GameRule.h"
|
|
|
|
|
|
struct BanWordBase
|
|
{
|
|
BanWordBase()
|
|
{
|
|
memset( szString, 0, sizeof( szString ) );
|
|
}
|
|
|
|
char szString[256];
|
|
}; |