mirror of
https://github.com/ENSL/NS.git
synced 2024-11-14 17:01:29 +00:00
15 lines
284 B
C++
15 lines
284 B
C++
#include "AvHConstants.h"
|
|
#include <cstring>
|
|
|
|
const int slashchr = '\\';
|
|
#define kAvHModDir ((const char*)("ns")) // shouldnt it be ns??? // was nsp
|
|
|
|
const char* getModDirectory(void)
|
|
{
|
|
return kAvHModDir;
|
|
}
|
|
|
|
const char* getModName(void)
|
|
{
|
|
return kAvHGameName;
|
|
}
|