rnd-20100316-1-src
[rocksndiamonds.git] / src / game_sp / SettingsObject.c
diff --git a/src/game_sp/SettingsObject.c b/src/game_sp/SettingsObject.c
deleted file mode 100644 (file)
index a241fe5..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-// ----------------------------------------------------------------------------
-// SettingsObject.c
-// ----------------------------------------------------------------------------
-
-#include "SettingsObject.h"
-
-// --- VERSION 1.0 CLASS
-// --- BEGIN
-// ---   MultiUse = -1  'True  // True
-// ---   Persistable = 0  'NotPersistable  // NotPersistable
-// ---   DataBindingBehavior = 0  'vbNone  // vbNone
-// ---   DataSourceBehavior  = 0  'vbNone  // vbNone
-// ---   MTSTransactionMode  = 0  'NotAnMTSObject  // NotAnMTSObject
-// --- END
-
-// static char *VB_Name = "SettingsObject";
-// static boolean VB_GlobalNameSpace = False;
-// static boolean VB_Creatable = True;
-// static boolean VB_PredeclaredId = False;
-// static boolean VB_Exposed = False;
-
-// --- Option Explicit
-// --- Option Compare Text
-
-#if 0
-
-const char *AppName = "MegaPlex";
-const char *Config = "Config";
-
-void SettingsObject_Save(char *ValName, int Val)
-{
-  SaveSetting(AppName, Config, ValName, Val);
-}
-
-int SettingsObject_Read(char *ValName, int Default)
-{
-  int Read;
-
-  Read = GetSetting(AppName, Config, ValName, Default);
-
-  return Read;
-}
-
-#endif