mirror of
https://github.com/ENSL/NS.git
synced 2024-11-24 05:21:16 +00:00
16 lines
249 B
C++
16 lines
249 B
C++
|
#include "AvHConstants.h"
|
||
|
#include <cstring>
|
||
|
|
||
|
const int slashchr = '\\';
|
||
|
#define kAvHModDir ((const char*)("ns"))
|
||
|
|
||
|
const char* getModDirectory(void)
|
||
|
{
|
||
|
return kAvHModDir;
|
||
|
}
|
||
|
|
||
|
const char* getModName(void)
|
||
|
{
|
||
|
return kAvHGameName;
|
||
|
}
|