brushdef.hpp 529 B

123456789101112131415161718192021
  1. #ifndef BRUSHDEF_HPP
  2. #define BRUSHDEF_HPP
  3. #include <string>
  4. #include <vector>
  5. #include <sstream>
  6. #include "worldspawn.h"
  7. #include "planes.h"
  8. std::string texdef_gtk(const TPlanePoints&);
  9. std::string texdef_net(const TPlanePoints&);
  10. void brushdef_gtk(std::stringstream&, const std::vector<TPlanePoints>&);
  11. void brushdef_net(std::stringstream&, const std::vector<TPlanePoints>&);
  12. std::string GetBrushString(const TBrush&,
  13. void (*f) (std::stringstream &, const std::vector<TPlanePoints> &));
  14. #endif