mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
16 lines
223 B
C++
16 lines
223 B
C++
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class ScanlineMask;
|
|
struct Vec2i;
|
|
|
|
class ScanlineMaskConverter
|
|
{
|
|
public:
|
|
static ScanlineMask *CompilePoly(const Vec2i *points, size_t numPoints);
|
|
};
|
|
}
|