mirror of
https://github.com/edubart/otclient.git
synced 2025-12-27 10:07:11 +01:00
15 lines
232 B
C++
15 lines
232 B
C++
#ifndef TRANSLATOR_H
|
|
#define TRANSLATOR_H
|
|
|
|
#include "../const.h"
|
|
#include <string>
|
|
|
|
namespace fw {
|
|
|
|
AlignmentFlag translateAlignment(std::string aligment);
|
|
AnchorEdge translateAnchorEdge(const std::string& anchorPoint);
|
|
|
|
};
|
|
|
|
#endif
|