qbsp: expose some stuff in qbsp.hh
This commit is contained in:
parent
3ec36f6550
commit
64efc77055
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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 */
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue