diff --git a/include/qbsp/qbsp.hh b/include/qbsp/qbsp.hh index ab10fd21..5407c632 100644 --- a/include/qbsp/qbsp.hh +++ b/include/qbsp/qbsp.hh @@ -349,4 +349,8 @@ extern options_t options; #include #include +void ProcessEntity(mapentity_t *entity, const int hullnum); +void CreateSingleHull(const int hullnum); +void CreateHulls(void); + #endif diff --git a/qbsp/qbsp.cc b/qbsp/qbsp.cc index c8b759b2..b69e20b2 100644 --- a/qbsp/qbsp.cc +++ b/qbsp/qbsp.cc @@ -36,7 +36,7 @@ options_t options; ProcessEntity =============== */ -static void +void ProcessEntity(mapentity_t *entity, const int hullnum) { int i, numportals, firstface; @@ -467,7 +467,7 @@ CreateSingleHull ================= */ -static void +void CreateSingleHull(const int hullnum) { int i; @@ -491,7 +491,7 @@ CreateHulls ================= */ -static void +void CreateHulls(void) { /* create the hulls sequentially */