diff options
author | Oxore <oxore@protonmail.com> | 2017-12-02 18:07:04 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2017-12-02 18:07:04 +0300 |
commit | 4e09b4c2e92806dc3230e6b9f1c2a1ff023c6080 (patch) | |
tree | e943a47779d1836c52e8591a9ab347a38016c484 /src/text.c | |
parent | 0edc5e799a5485f405756695491f1a497c21243c (diff) |
Rearrange includes; replace uint8_t by char
Diffstat (limited to 'src/text.c')
-rw-r--r-- | src/text.c | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,9 +1,12 @@ -#include <yaml.h> -#include <SFML/Graphics.h> +#include <stdio.h> #include <stdlib.h> #include <string.h> -#include <stdio.h> +#include <SFML/Graphics/Font.h> +#include <SFML/Graphics/Text.h> +#include <SFML/Graphics.h> +#include <yaml.h> +#include "common.h" #include "text.h" extern sfFont *fontScore; |