Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-02-05 00:10:02 +0000
committerStijn Buys <ingar@osirion.org>2008-02-05 00:10:02 +0000
commit95ca0e469ef856c0182bb0da411e4417391e3780 (patch)
treea07db9b9d726d175d8305dc3cc5520b8a70f7a73 /src/client/input.h
parentcf61370df80de6dc659dbd9b803c973b300c1b4c (diff)
renamed client and server application objects
cleaned up namespaces
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