13 lines
228 B
C++
13 lines
228 B
C++
// Message.h
|
|
#ifndef AB_MESSAGE_H
|
|
#define AB_MESSAGE_H
|
|
|
|
#include "Common.h"
|
|
#include "ItemTemplate.h"
|
|
|
|
#include <string>
|
|
|
|
std::string ABGetLocaleText(LocaleConstant locale, const std::string& titleType);
|
|
|
|
#endif // AB_MESSAGE_H
|