Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/thirdparty/msdfgen/core/base.h
9903 views
1
2
#pragma once
3
4
// This file needs to be included first for all MSDFgen sources
5
6
#ifndef MSDFGEN_PUBLIC
7
#include <msdfgen/msdfgen-config.h>
8
#endif
9
10
#include <cstddef>
11
12
namespace msdfgen {
13
14
typedef unsigned char byte;
15
16
}
17
18