first commit
This commit is contained in:
30
ZAPDTR/ZAPD/ZText.h
Normal file
30
ZAPDTR/ZAPD/ZText.h
Normal file
@@ -0,0 +1,30 @@
|
||||
#pragma once
|
||||
|
||||
#include "ZResource.h"
|
||||
#include "tinyxml2.h"
|
||||
|
||||
class MessageEntry
|
||||
{
|
||||
public:
|
||||
uint16_t id;
|
||||
uint8_t textboxType;
|
||||
uint8_t textboxYPos;
|
||||
uint32_t segmentId;
|
||||
uint32_t msgOffset;
|
||||
std::string msg;
|
||||
};
|
||||
|
||||
class ZText : public ZResource
|
||||
{
|
||||
public:
|
||||
std::vector<MessageEntry> messages;
|
||||
|
||||
ZText(ZFile* nParent);
|
||||
|
||||
void ParseRawData() override;
|
||||
|
||||
std::string GetSourceTypeName() const override;
|
||||
ZResourceType GetResourceType() const override;
|
||||
|
||||
size_t GetRawDataSize() const override;
|
||||
};
|
||||
Reference in New Issue
Block a user