reflex2q3/include/brushdef.hpp

21 lines
529 B
C++
Raw Permalink Normal View History

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"
std::string texdef_gtk(const TPlanePoints&);
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