(svn r27636) -Codechange: Rename FileType to AbstractFileType.

This commit is contained in:
alberth
2016-09-04 12:46:07 +00:00
parent a35e970ab0
commit 757bc0a97b
3 changed files with 13 additions and 13 deletions

View File

@@ -14,6 +14,14 @@
#include "core/enum_type.hpp"
/** The different abstract types of files that the system knows about. */
enum AbstractFileType {
FT_NONE, ///< nothing to do
FT_SAVEGAME, ///< old or new savegame
FT_SCENARIO, ///< old or new scenario
FT_HEIGHTMAP, ///< heightmap file
};
/**
* The different kinds of subdirectories OpenTTD uses
*/