mirror of
https://github.com/ENSL/NS.git
synced 2024-11-24 05:21:16 +00:00
c111ce76db
o Added ns.tga for steam browser icon. o changed directory to nsp. o Added more info to cl_showspeed. o Fixed a bug where a commander could not accurately determine an alien health ring value. o Fixed pancaking - added limit to the speed at which a lerk can climb and dive. git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@385 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;
|
|
}
|