2017-04-11 20:57:10 +05:30
|
|
|
#ifndef BRUSHDEF_HPP
|
|
|
|
#define BRUSHDEF_HPP
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <sstream>
|
|
|
|
#include "worldspawn.h"
|
|
|
|
#include "planes.h"
|
|
|
|
|
2017-08-19 18:15:58 +05:30
|
|
|
std::string texdef_gtk(const TPlanePoints&);
|
|
|
|
|
2017-07-08 07:46:28 +05:30
|
|
|
std::string texdef_net(const TPlanePoints&);
|
|
|
|
|
2017-04-11 20:57:10 +05:30
|
|
|
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
|