qbsp: expose some stuff in qbsp.hh

This commit is contained in:
Eric Wasylishen 2017-04-28 12:47:42 -06:00
parent 3ec36f6550
commit 64efc77055
2 changed files with 7 additions and 3 deletions

View File

@ -349,4 +349,8 @@ extern options_t options;
#include <qbsp/map.hh> #include <qbsp/map.hh>
#include <qbsp/util.hh> #include <qbsp/util.hh>
void ProcessEntity(mapentity_t *entity, const int hullnum);
void CreateSingleHull(const int hullnum);
void CreateHulls(void);
#endif #endif

View File

@ -36,7 +36,7 @@ options_t options;
ProcessEntity ProcessEntity
=============== ===============
*/ */
static void void
ProcessEntity(mapentity_t *entity, const int hullnum) ProcessEntity(mapentity_t *entity, const int hullnum)
{ {
int i, numportals, firstface; int i, numportals, firstface;
@ -467,7 +467,7 @@ CreateSingleHull
================= =================
*/ */
static void void
CreateSingleHull(const int hullnum) CreateSingleHull(const int hullnum)
{ {
int i; int i;
@ -491,7 +491,7 @@ CreateHulls
================= =================
*/ */
static void void
CreateHulls(void) CreateHulls(void)
{ {
/* create the hulls sequentially */ /* create the hulls sequentially */