mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-16 01:11:28 +00:00
37e49ed775
- use only one Section type.
10 lines
385 B
C++
10 lines
385 B
C++
#include "hw_sections.h"
|
|
|
|
extern TArray<Section*> sections2;
|
|
extern TArrayView<TArrayView<Section*>> sections2PerSector;
|
|
|
|
void hw_CreateSections2();
|
|
using Outline = TArray<TArray<vec2_t>>;
|
|
using Point = std::pair<float, float>;
|
|
using FOutline = std::vector<std::vector<Point>> ; // Data type was chosen so it can be passed directly into Earcut.
|
|
Outline BuildOutline(Section* section);
|