mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-30 12:03:30 +00:00
20 lines
377 B
C++
Executable File
20 lines
377 B
C++
Executable File
#pragma once
|
|
|
|
//package net.minecraft.client;
|
|
#include <string>
|
|
#include <vector>
|
|
typedef std::vector<std::string> StringVector;
|
|
class OptionsFile
|
|
{
|
|
public:
|
|
OptionsFile();
|
|
void save(const StringVector& settings);
|
|
StringVector getOptionStrings();
|
|
void setOptionsPath(const std::string& path);
|
|
std::string getOptionsPath() const;
|
|
|
|
private:
|
|
std::string settingsPath;
|
|
};
|
|
|