diff options
author | bunnei <bunneidev@gmail.com> | 2018-09-11 11:37:32 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-11 11:37:32 -0400 |
commit | 143525dcb97b96a2e2046e6d0c6088a66a8885df (patch) | |
tree | 082e212263ed4b2409b2fe62faa4cd3b6a051e8d /externals/open_source_archives/include/FontStandard.h | |
parent | 3bac3051fc03846f5461628ba6a1b1f19851657c (diff) | |
parent | 46ba1bc40f110a52292290634eefd0c030677eea (diff) |
Merge pull request #1293 from lioncash/font
externals: Place font data within cpp files
Diffstat (limited to 'externals/open_source_archives/include/FontStandard.h')
-rw-r--r-- | externals/open_source_archives/include/FontStandard.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/externals/open_source_archives/include/FontStandard.h b/externals/open_source_archives/include/FontStandard.h new file mode 100644 index 000000000..ad379f12c --- /dev/null +++ b/externals/open_source_archives/include/FontStandard.h @@ -0,0 +1,6 @@ +#pragma once + +#include <array> + +extern const std::array<unsigned char, 217276> FontStandard; + |