Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/parser.cc')
-rw-r--r--src/core/parser.cc16
1 files changed, 1 insertions, 15 deletions
diff --git a/src/core/parser.cc b/src/core/parser.cc
index 6af3903..1b35592 100644
--- a/src/core/parser.cc
+++ b/src/core/parser.cc
@@ -4,26 +4,12 @@
the terms of the GNU General Public License version 2
*/
-#include "core/parser.h"
#include "auxiliary/functions.h"
+#include "core/parser.h"
#include "sys/sys.h"
namespace core {
-bool Parser::read_entity_menu(core::Entity *entity, const std::string &menufilename)
-{
- filesystem::IniFile inifile;
- inifile.open(menufilename);
-
- if (!inifile.is_open()) {
- return false;
- }
-
- con_debug << " " << inifile.name() << std::endl;
-
- inifile.close();
- return true;
-}
bool Parser::got_entity_key(filesystem::IniFile &inifile, core::Entity *entity)
{