1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-03 17:19:46 +02:00

rwengine+rwgame: add missing includes

This commit is contained in:
Anonymous Maarten 2018-02-10 16:59:07 +01:00 committed by Daniel Evans
parent ebc74559e8
commit 4ebc66b544
4 changed files with 3 additions and 1 deletions

View File

@ -7,6 +7,7 @@
#include <fstream>
#include <iostream>
#include <iterator>
#include <sstream>
#include <stdexcept>
#include <boost/algorithm/string/predicate.hpp>

View File

@ -3,7 +3,6 @@
#include <cstddef>
#include <memory>
#include <array>
#include <glm/glm.hpp>

View File

@ -1,6 +1,7 @@
#ifndef _RWENGINE_TEXTRENDERER_HPP_
#define _RWENGINE_TEXTRENDERER_HPP_
#include <array>
#include <memory>
#include <string>
#include <array>

View File

@ -8,6 +8,7 @@
#include <glm/gtc/constants.hpp>
#include <iomanip>
#include <sstream>
constexpr size_t ui_textSize = 25;
constexpr size_t ui_textHeight = 22;