2017-09-12 03:28:15 +02:00
|
|
|
/*
|
2019-08-03 19:43:48 +02:00
|
|
|
* This software is licensed under the terms of the MIT License.
|
2017-09-12 03:28:15 +02:00
|
|
|
* See COPYING for further information.
|
|
|
|
* ---
|
2019-01-23 21:10:43 +01:00
|
|
|
* Copyright (c) 2011-2019, Lukas Weber <laochailan@web.de>.
|
2019-07-03 20:00:56 +02:00
|
|
|
* Copyright (c) 2012-2019, Andrei Alexeyev <akari@taisei-project.org>.
|
2017-09-12 03:28:15 +02:00
|
|
|
*/
|
2017-03-06 01:25:59 +01:00
|
|
|
|
2019-01-23 21:10:43 +01:00
|
|
|
#ifndef IGUARD_util_h
|
|
|
|
#define IGUARD_util_h
|
|
|
|
|
2017-11-25 20:45:11 +01:00
|
|
|
#include "taisei.h"
|
2017-03-06 01:25:59 +01:00
|
|
|
|
2018-05-15 02:27:25 +02:00
|
|
|
#include "util/assert.h"
|
|
|
|
#include "util/crap.h"
|
|
|
|
#include "util/debug.h"
|
|
|
|
#include "util/env.h"
|
|
|
|
#include "util/geometry.h"
|
|
|
|
// #include "util/glm.h"
|
2018-07-04 10:36:16 +02:00
|
|
|
// #include "util/graphics.h"
|
2018-05-15 02:27:25 +02:00
|
|
|
#include "util/io.h"
|
|
|
|
#include "util/kvparser.h"
|
|
|
|
#include "util/miscmath.h"
|
|
|
|
// #include "util/pngcruft.h"
|
|
|
|
#include "util/stringops.h"
|
|
|
|
|
|
|
|
// FIXME: might not be the best place for these
|
2017-10-04 07:07:04 +02:00
|
|
|
#include "log.h"
|
2018-05-15 02:27:25 +02:00
|
|
|
#include "vfs/public.h"
|
|
|
|
#include "util/consideredharmful.h"
|
2020-04-05 04:51:00 +02:00
|
|
|
#include "dynarray.h"
|
2019-01-23 21:10:43 +01:00
|
|
|
|
|
|
|
#endif // IGUARD_util_h
|