21 lines
529 B
C++
21 lines
529 B
C++
#ifndef BRUSHDEF_HPP
|
|
#define BRUSHDEF_HPP
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <sstream>
|
|
#include "worldspawn.h"
|
|
#include "planes.h"
|
|
|
|
std::string texdef_gtk(const TPlanePoints&);
|
|
|
|
std::string texdef_net(const TPlanePoints&);
|
|
|
|
void brushdef_gtk(std::stringstream&, const std::vector<TPlanePoints>&);
|
|
|
|
void brushdef_net(std::stringstream&, const std::vector<TPlanePoints>&);
|
|
|
|
std::string GetBrushString(const TBrush&,
|
|
void (*f) (std::stringstream &, const std::vector<TPlanePoints> &));
|
|
|
|
#endif |