Files
arounders/source/aux_textfile.h
JailDoctor fdc604be3c - [NEW] aux_textfile()
- Implementant la càrrega del nivell
2023-10-18 16:18:57 +02:00

19 lines
298 B
C++

#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);
}