16 lines
219 B
C++
16 lines
219 B
C++
|
|
#pragma once
|
|
|
|
// This file needs to be included first for all MSDFgen sources
|
|
|
|
#ifndef MSDFGEN_PUBLIC
|
|
#include <msdfgen/msdfgen-config.h>
|
|
#endif
|
|
|
|
#include <cstddef>
|
|
|
|
namespace msdfgen {
|
|
|
|
typedef unsigned char byte;
|
|
|
|
}
|