aboutsummaryrefslogtreecommitdiffstats
path: root/yage/yage.h
diff options
context:
space:
mode:
Diffstat (limited to 'yage/yage.h')
-rw-r--r--yage/yage.h40
1 files changed, 20 insertions, 20 deletions
diff --git a/yage/yage.h b/yage/yage.h
index d9f5a6e6..630bc1be 100644
--- a/yage/yage.h
+++ b/yage/yage.h
@@ -1,15 +1,15 @@
/* ----------------------------------------------------------------------------
* yage.h
*
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
- * See file LICENSE for more details
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
* ----------------------------------------------------------------------------
*/
/** @file Includes all the headers in the main yage project.
- *
- * This does not include
- */
+ *
+ * This does not include
+ */
#ifndef YAGE_YAGE_H
#define YAGE_YAGE_H
@@ -19,6 +19,9 @@
#include "core/imageloader.h"
#include "core/inputmanager.h"
#include "core/iomanager.h"
+#include "core/logger.h"
+#include "core/logmessage.h"
+#include "core/logsink.h"
#include "core/picopng.h"
#include "core/resourcemanager.h"
#include "core/spritebatch.h"
@@ -26,9 +29,6 @@
#include "core/texture.h"
#include "core/vertex.h"
#include "core/window.h"
-#include "core/logger.h"
-#include "core/logmessage.h"
-#include "core/logsink.h"
#include "physics/body.h"
#include "physics/particlebody.h"
@@ -41,27 +41,27 @@
#include "util/syncqueue.h"
/** Project namespace.
- *
- * Avoids collision as all the classes and global functions are wrapped in.
- * it.
- */
+ *
+ * Avoids collision as all the classes and global functions are wrapped in.
+ * it.
+ */
namespace yage
{
extern void glfwErrorCallback(int, const char *);
/** Initializes yage.
- *
- * This is only there to initialize glfw.
- *
- * @return Returns true if the initialization was successful.
- */
+ *
+ * This is only there to initialize glfw.
+ *
+ * @return Returns true if the initialization was successful.
+ */
extern void init();
/** Quit and cleanup yage
- *
- * glfw needs to clean itself up.
- */
+ *
+ * glfw needs to clean itself up.
+ */
extern void quit();
} // namespace yage