space-game001/Utils.h

18 lines
342 B
C++
Executable File

#pragma once
#include <string>
#include <vector>
#include <exception>
#include <map>
#include <stack>
#include <memory>
#include <unordered_map>
namespace ZL
{
std::string readTextFile(const std::string& filename);
std::vector<char> readFile(const std::string& filename);
bool findString(const char* in, char* list);
}