Files
BH3/Assets/Plugins/Assembly-CSharp-firstpass/MoleMole/NetworkErrCodeMetaData.cs
2025-08-13 09:26:42 +08:00

27 lines
636 B
C#

namespace MoleMole
{
[GeneratePartialHash(CombineGeneratedFile = true)]
public class NetworkErrCodeMetaData : IHashable
{
public readonly string errType;
public readonly string retCode;
public readonly string textMapID;
public NetworkErrCodeMetaData(string errType, string retCode, string textMapID)
{
this.errType = errType;
this.retCode = retCode;
this.textMapID = textMapID;
}
public void ObjectContentHashOnto(ref int lastHash)
{
HashUtils.ContentHashOnto(errType, ref lastHash);
HashUtils.ContentHashOnto(retCode, ref lastHash);
HashUtils.ContentHashOnto(textMapID, ref lastHash);
}
}
}