mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-16 16:34:41 +01:00
23 lines
441 B
C#
23 lines
441 B
C#
namespace MoleMole
|
|
{
|
|
[GeneratePartialHash(CombineGeneratedFile = true)]
|
|
public class TextMapMetaData : IHashable
|
|
{
|
|
public readonly string ID;
|
|
|
|
public readonly string Text;
|
|
|
|
public TextMapMetaData(string ID, string Text)
|
|
{
|
|
this.ID = ID;
|
|
this.Text = Text;
|
|
}
|
|
|
|
public void ObjectContentHashOnto(ref int lastHash)
|
|
{
|
|
HashUtils.ContentHashOnto(ID, ref lastHash);
|
|
HashUtils.ContentHashOnto(Text, ref lastHash);
|
|
}
|
|
}
|
|
}
|