tibia-client/src/framework/util/translator.h

15 lines
224 B
C
Raw Normal View History

2011-07-13 23:12:36 +02:00
#ifndef TRANSLATOR_H
#define TRANSLATOR_H
2011-08-15 16:06:15 +02:00
#include "../const.h"
2011-07-13 23:12:36 +02:00
#include <string>
2011-08-15 16:06:15 +02:00
namespace fw {
AlignmentFlag translateAlignment(std::string aligment);
AnchorEdge translateAnchorEdge(std::string anchorEdge);
2011-08-15 16:06:15 +02:00
};
2011-08-14 04:09:11 +02:00
#endif