备份CatanBuilding瘦身独立工程
This commit is contained in:
61
Assets/Scripts/Tables/Normal.cs
Normal file
61
Assets/Scripts/Tables/Normal.cs
Normal file
@@ -0,0 +1,61 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
using Bright.Serialization;
|
||||
using System.Collections.Generic;
|
||||
using SimpleJSON;
|
||||
|
||||
|
||||
|
||||
namespace cfg
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 普通道具
|
||||
/// </summary>
|
||||
public sealed partial class Normal : DiggingItemProp
|
||||
{
|
||||
public Normal(JSONNode _json) : base(_json)
|
||||
{
|
||||
PostInit();
|
||||
}
|
||||
|
||||
public Normal() : base()
|
||||
{
|
||||
PostInit();
|
||||
}
|
||||
|
||||
public static Normal DeserializeNormal(JSONNode _json)
|
||||
{
|
||||
return new Normal(_json);
|
||||
}
|
||||
|
||||
|
||||
public const int __ID__ = -1955878649;
|
||||
public override int GetTypeId() => __ID__;
|
||||
|
||||
public override void Resolve(Dictionary<string, object> _tables)
|
||||
{
|
||||
base.Resolve(_tables);
|
||||
PostResolve();
|
||||
}
|
||||
|
||||
public override void TranslateText(System.Func<string, string, string> translator)
|
||||
{
|
||||
base.TranslateText(translator);
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return "{ "
|
||||
+ "}";
|
||||
}
|
||||
|
||||
partial void PostInit();
|
||||
partial void PostResolve();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user