mirror of
https://github.com/unknownworlds/NS.git
synced 2024-11-14 00:41:06 +00:00
be31c02eff
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@109 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;
|
|
}
|