mirror of
https://github.com/ENSL/NS.git
synced 2024-12-01 00:32:05 +00:00
3e025675b3
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@219 67975925-1194-0748-b3d5-c16f83f1a3a1
15 lines
250 B
C++
15 lines
250 B
C++
#include "AvHConstants.h"
|
|
#include <cstring>
|
|
|
|
const int slashchr = '\\';
|
|
#define kAvHModDir ((const char*)("nsp"))
|
|
|
|
const char* getModDirectory(void)
|
|
{
|
|
return kAvHModDir;
|
|
}
|
|
|
|
const char* getModName(void)
|
|
{
|
|
return kAvHGameName;
|
|
}
|