Index: /trunk/client/Game2/GamePeer.cpp
===================================================================
--- /trunk/client/Game2/GamePeer.cpp	(revision 923)
+++ /trunk/client/Game2/GamePeer.cpp	(revision 925)
@@ -22,4 +22,6 @@
 
 #include "StdAfx.h"
+
+#include <lua.hpp>
 
 #include <luabind/adopt_policy.hpp>
@@ -61,7 +63,7 @@
 	module(L) [
 		class_<GamePeer>("Game")
-			.def("get_config", &LGetConfig, adopt(result))
-			.def("get_on_init", &LGetOnInit)
-			.def("on_init", &LOnInit)
+			.def("get_config", &GamePeer::LGetConfig, adopt(result))
+			.def("get_on_init", &GamePeer::LGetOnInit)
+			.def("on_init", &GamePeer::LOnInit)
 	];
 }
Index: /trunk/client/Game2/ConfigPeer.cpp
===================================================================
--- /trunk/client/Game2/ConfigPeer.cpp	(revision 923)
+++ /trunk/client/Game2/ConfigPeer.cpp	(revision 925)
@@ -54,7 +54,7 @@
 	module(L) [
 		class_<ConfigPeer>("Config")
-			.def("unlink", &LUnlink)
-			.def("get_video_res", &LGetVideoRes)
-			.def("set_video_res", &LSetVideoRes)
+			.def("unlink", &ConfigPeer::LUnlink)
+			.def("get_video_res", &ConfigPeer::LGetVideoRes)
+			.def("set_video_res", &ConfigPeer::LSetVideoRes)
 	];
 }
Index: /trunk/client/Game2/Makefile.am
===================================================================
--- /trunk/client/Game2/Makefile.am	(revision 886)
+++ /trunk/client/Game2/Makefile.am	(revision 925)
@@ -12,8 +12,12 @@
 hoverrace_SOURCES = \
 	StdAfx.h \
+	ConfigPeer.cpp \
+	ConfigPeer.h \
 	Console.cpp \
 	Console.h \
 	Controller.cpp \
 	Controller.h \
+	GamePeer.cpp \
+	GamePeer.h \
 	RoomList.cpp \
 	RoomList.h \
