wxMahjong/XmlLayout.h
2022-06-08 21:42:25 +03:00

29 lines
381 B
C++

#ifndef XMLLAYOUT_H
#define XMLLAYOUT_H
#include "wxw.h"
#include <wx/xml/xml.h>
#include "utils.h"
class XmlLayout {
public:
XmlLayout();
bool openFile(const wxString& path);
Dimensions getDimensions();
void readLayout(TLVec& table);
uint8_t getTilesNumber();
private:
wxString path;
int lx;
int ly;
wxXmlDocument layoutDoc;
};
#endif