aboutsummaryrefslogtreecommitdiff
path: root/src/Files.h
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2021-10-02 17:32:23 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2021-10-02 17:32:23 +0700
commit4aeff0886aa61ed3834ef4826aa1a1f3e99508b1 (patch)
tree0be178818e4ed9de7e70872c224ce73adaba8f6a /src/Files.h
parent7a4fdb3978c36e4309479806140f38669bcd3883 (diff)
downloadblackshades-4aeff0886aa61ed3834ef4826aa1a1f3e99508b1.tar.gz
Clean up unused functions and style2.4.0
Diffstat (limited to 'src/Files.h')
-rw-r--r--src/Files.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/Files.h b/src/Files.h
deleted file mode 100644
index c8dbb8e..0000000
--- a/src/Files.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef _FILES_H_
-#define _FILES_H_
-
-#include <iostream>
-#include <fstream>
-
-#include "Support.h"
-
-#define FILE_STRINGS 130
-#define Pstr unsigned char *
-#define Cstr char *
-
-#define FILE_NAME_SIZE 32
-
-/**> Files Opening <**/
-class Files
-{
- public:
- char szSavedGameName[FILE_NAME_SIZE + 1];
- short sSavedGameVolume;
- int sFile;
-
- int OpenFile(Str255 Name);
- Files() : sFile(-1) { }
- short OpenSavedGame(Str255 Name);
- short OpenFileDialog();
- void LoadNamedMap(Str255 Name);
- void LoadGame(Str255 Name, int animnum);
-
- void LoadMap();
- void StartSave();
- void EndSave();
- void StartLoad();
- void EndLoad();
-};
-
-#endif