mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-26 08:41:13 +02:00
13 lines
341 B
C++
13 lines
341 B
C++
|
#include "StdInc.h"
|
||
|
|
||
|
#include "LogicalExpression.h"
|
||
|
|
||
|
#include "VCMI_Lib.h"
|
||
|
#include "CGeneralTextHandler.h"
|
||
|
|
||
|
std::string LogicalExpressionDetail::getTextForOperator(std::string operation)
|
||
|
{
|
||
|
//placed in cpp mostly to avoid unnecessary includes in header
|
||
|
return VLC->generaltexth->localizedTexts["logicalExpressions"][operation].String();
|
||
|
}
|