- [NEW] aux_textfile()

- Implementant la càrrega del nivell
This commit is contained in:
2023-10-18 16:18:57 +02:00
parent 3f203fee62
commit fdc604be3c
4 changed files with 112 additions and 21 deletions

18
source/aux_textfile.h Normal file
View File

@@ -0,0 +1,18 @@
#pragma once
#include <string>
namespace textfile
{
const bool open(std::string filename);
void close();
std::string getNextToken();
const bool searchToken(std::string token);
std::string getStringValue(std::string token);
const int getIntValue(std::string token);
}