Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/input.h')
-rw-r--r--src/client/input.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/client/input.h b/src/client/input.h
index 2fc3580..7b5f61a 100644
--- a/src/client/input.h
+++ b/src/client/input.h
@@ -1,4 +1,4 @@
-/* input.h
+/* client/input.h
This file is part of the Osirion project and is distributed under
the terms and conditions of the GNU General Public License version 2
*/
@@ -6,18 +6,18 @@
#ifndef __INCLUDED_INPUT_H__
#define __INCLUDED_INPUT_H__
-#include <SDL/SDL.h>
-
namespace client {
namespace input {
/// initialize the input subsystem
-extern void init();
+void init();
+
/// shutdown the input subsystem
-extern void shutdown();
+void shutdown();
+
/// handle one frame of input events
-extern void frame(float seconds);
+void frame(float seconds);
} // namespace input