stuff-from-scratch/test/fonts/TestFreeTypeFontEngine.cpp

14 lines
135 B
C++
Raw Normal View History

2022-11-10 20:35:00 +00:00
#include "FreeTypeFontEngine.h"
#include <iostream>
int main()
{
FreeTypeFontEngine engine;
engine.run();
return 0;
}