summaryrefslogtreecommitdiff
path: root/src/strife/m_saves.h
diff options
context:
space:
mode:
authorJames Haley2010-10-03 16:45:53 +0000
committerJames Haley2010-10-03 16:45:53 +0000
commit7a3748fd12f76b2c84d087f4ccec7c281cb830cb (patch)
tree7b96e032801653b0127d23a45c32b4c6a53101bd /src/strife/m_saves.h
parenteb1e33f9dbbce358b5de557e6d8c366a60de9866 (diff)
downloadchocolate-doom-7a3748fd12f76b2c84d087f4ccec7c281cb830cb.tar.gz
chocolate-doom-7a3748fd12f76b2c84d087f4ccec7c281cb830cb.tar.bz2
chocolate-doom-7a3748fd12f76b2c84d087f4ccec7c281cb830cb.zip
Added beginnings of Strife hub save code. ATTN fraggle: please add
m_saves.c to other platform builds. See also email regarding opendir etc. Subversion-branch: /branches/strife-branch Subversion-revision: 2151
Diffstat (limited to 'src/strife/m_saves.h')
-rw-r--r--src/strife/m_saves.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/strife/m_saves.h b/src/strife/m_saves.h
new file mode 100644
index 00000000..9b587c81
--- /dev/null
+++ b/src/strife/m_saves.h
@@ -0,0 +1,40 @@
+// Emacs style mode select -*- C++ -*-
+//-----------------------------------------------------------------------------
+//
+// Copyright(C) 1993-1996 Id Software, Inc.
+// Copyright(C) 1996 Rogue Entertainment / Velocity, Inc.
+// Copyright(C) 2010 James Haley, Samuel Villareal
+//
+// This program 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 (at your option) any later version.
+//
+// This program 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 this program; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+// 02111-1307, USA.
+//
+// DESCRIPTION:
+//
+// [STRIFE] New Module
+//
+// Strife Hub Saving Code
+//
+//-----------------------------------------------------------------------------
+
+#ifndef M_SAVES_H__
+#define M_SAVES_H__
+
+boolean M_SaveMisObj(const char *path);
+
+#endif
+
+// EOF
+
+