Shipwright/libultraship/libultraship/Factories/TextFactory.h

11 lines
172 B
C++

#include "../Text.h"
#include "Utils/BinaryReader.h"
namespace Ship
{
class TextFactory
{
public:
static Text* ReadText(BinaryReader* reader);
};
}