diff options
| author | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-12-17 13:36:35 +0100 | 
|---|---|---|
| committer | heavydemon21 <nielsstunnebrink1@gmail.com> | 2024-12-17 13:36:35 +0100 | 
| commit | 31fe4b1d44a7a7114c7ef8c0c5310a6070214cb2 (patch) | |
| tree | 14564711f3ce996ccb1000e3f4f07d265e6fab88 /src/example/loadfont.cpp | |
| parent | 0c02511f6a64766174cb0db3beb4cc159d3efdf7 (diff) | |
| parent | 69ca7fdd738fd4ed98aefc07bab5a43486a55619 (diff) | |
Merge branch 'wouter/text-component' into niels/UI
Diffstat (limited to 'src/example/loadfont.cpp')
| -rw-r--r-- | src/example/loadfont.cpp | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/src/example/loadfont.cpp b/src/example/loadfont.cpp index 36d00dd..ed67ffa 100644 --- a/src/example/loadfont.cpp +++ b/src/example/loadfont.cpp @@ -1,14 +1,14 @@  #include <SDL2/SDL_ttf.h> +#include <crepe/api/Asset.h>  #include <crepe/api/Text.h>  #include <crepe/facade/Font.h>  #include <crepe/facade/SDLContext.h> -#include <crepe/api/Asset.h>  #include <crepe/manager/Mediator.h>  #include <crepe/manager/ResourceManager.h>  #include <exception>  #include <iostream> -#include <optional>  #include <memory> +#include <optional>  using namespace crepe;  int main() { @@ -20,11 +20,11 @@ int main() {  	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), "OpenSymbol", Text::Data{},"test text", Asset("")); +			1, vec2(100, 100), vec2(0, 0), "OpenSymbol", Text::Data{}, "test text", Asset(""));  		// std::cout << "Path: " << label->font.get_path() << std::endl; -		std::unique_ptr<Text> label2 -			= std::make_unique<Text>(1, vec2(100, 100), vec2(0, 0),"fsaafdafsdafsdafsdasfdds", Text::Data{}); +		std::unique_ptr<Text> label2 = std::make_unique<Text>( +			1, vec2(100, 100), vec2(0, 0), "fsaafdafsdafsdafsdasfdds", Text::Data{});  		Asset asset = Asset("test test");  		label->font = asset;  		std::cout << label->font.value().get_path() << std::endl;  |