aboutsummaryrefslogtreecommitdiffstats
path: root/yage/yage.h
diff options
context:
space:
mode:
authorTravisBot <>2017-09-21 23:52:57 +0000
committerTravisBot <>2017-09-21 23:52:57 +0000
commit43d8d9b5de8f269643c380d8d6c6c65d9224ad4a (patch)
treeb8a9546cb663081e4587f812fa49a228be9978e5 /yage/yage.h
parentad666428488d3c800ca18d877dad803bf18b8168 (diff)
downloadYAGE-43d8d9b5de8f269643c380d8d6c6c65d9224ad4a.tar.gz
YAGE-43d8d9b5de8f269643c380d8d6c6c65d9224ad4a.zip
Rebuilding documentation
Diffstat (limited to 'yage/yage.h')
-rw-r--r--yage/yage.h60
1 files changed, 0 insertions, 60 deletions
diff --git a/yage/yage.h b/yage/yage.h
deleted file mode 100644
index 4fce87dc..00000000
--- a/yage/yage.h
+++ /dev/null
@@ -1,60 +0,0 @@
-/* ----------------------------------------------------------------------------
- * yage.h
- *
- * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
- * See file LICENSE for more details
- * ----------------------------------------------------------------------------
- */
-
-/** @file Includes all the headers in the main yage project.
- *
- * This does not include
- */
-
-#ifndef YAGE_YAGE_H
-#define YAGE_YAGE_H
-
-#include "base/camera2d.h"
-#include "base/glslprogram.h"
-#include "base/imageloader.h"
-#include "base/inputmanager.h"
-#include "base/iomanager.h"
-#include "base/picopng.h"
-#include "base/resourcemanager.h"
-#include "base/spritebatch.h"
-#include "base/texture.h"
-#include "base/vertex.h"
-#include "base/window.h"
-
-#include "physics/body.h"
-#include "physics/particlebody.h"
-#include "physics/rectanglecollider.h"
-#include "physics/rigidbody.h"
-
-/** Project namespace.
- *
- * 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.
- */
-extern void init();
-
-/** Quit and cleanup yage
- *
- * glfw needs to clean itself up.
- */
-extern void quit();
-
-} // namespace yage
-
-#endif