summaryrefslogtreecommitdiff
path: root/src/items.cpp
diff options
context:
space:
mode:
authorAaron Marks <nymacro@gmail.com>2005-07-26 13:05:08 +0000
committerAaron Marks <nymacro@gmail.com>2005-07-26 13:05:08 +0000
commit9603167e6b7c364e1a979f5a23420b6289026f46 (patch)
treee4a9c104c12057ab737ce592e64f31a25e18ae76 /src/items.cpp
parent0a7f92741ee87b35d30ccc351fe892e090b1d31a (diff)
downloadmanaserv-9603167e6b7c364e1a979f5a23420b6289026f46.tar.gz
manaserv-9603167e6b7c364e1a979f5a23420b6289026f46.tar.bz2
manaserv-9603167e6b7c364e1a979f5a23420b6289026f46.tar.xz
manaserv-9603167e6b7c364e1a979f5a23420b6289026f46.zip
Added shell for GameHandler (core game message handler).
Updated PostgreSQL tables -- now another unknown error results after various operations. Updated Item class (now inherits from Object).
Diffstat (limited to 'src/items.cpp')
-rw-r--r--src/items.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/items.cpp b/src/items.cpp
new file mode 100644
index 00000000..e0606920
--- /dev/null
+++ b/src/items.cpp
@@ -0,0 +1,29 @@
+/*
+ * The Mana World Server
+ * Copyright 2004 The Mana World Development Team
+ *
+ * This file is part of The Mana World.
+ *
+ * The Mana World is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * The Mana World is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with The Mana World; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * $Id$
+ */
+
+#include "items.h"
+
+void tmwserv::Item::use()
+{
+ //
+}