diff options
Diffstat (limited to 'src/example')
-rw-r--r-- | src/example/loadfont.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/example/loadfont.cpp b/src/example/loadfont.cpp index fe5466f..52454a1 100644 --- a/src/example/loadfont.cpp +++ b/src/example/loadfont.cpp @@ -5,17 +5,19 @@ #include <crepe/api/Text.h> #include <crepe/facade/Font.h> #include <crepe/manager/Mediator.h> +#include <crepe/facade/SDLContext.h> using namespace crepe; - int main() { + SDLFontContext font_facade; Mediator mediator; + SDLContext sdl_context{mediator}; try{ // Correct way to create a unique pointer for Text std::unique_ptr<Text> label = std::make_unique<Text>(1, vec2(100, 100), vec2(0, 0), "test test","OpenSymbol"); std::unique_ptr<Asset> asset = font_facade.get_font_asset(label->font_family); std::cout << "path: " << asset->get_path() << std::endl; - std::unique_ptr<Font> font = make_unique<Font>(asset,mediator) + std::unique_ptr<Font> font = std::make_unique<Font>(*asset,mediator); }catch (const std::exception& e) { std::cout << "Standard exception thrown: " << e.what() << std::endl; } |