30 lines
752 B
C#
30 lines
752 B
C#
//------------------------------------------------------------------------------
|
|
// <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>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace G
|
|
{
|
|
using System.Collections.Generic;
|
|
|
|
/// <summary>
|
|
/// Generated from: skill.xlsx
|
|
/// </summary>
|
|
partial class ItemMoves
|
|
{
|
|
public readonly List<int> children = new List<int>(3);
|
|
public override void Init()
|
|
{
|
|
if (this.parent > 0)
|
|
{
|
|
var parentItem = ItemProxy.Instance.GetStaticItem<ItemMoves>(this.parent);
|
|
parentItem.children.Add(id);
|
|
}
|
|
}
|
|
}
|
|
}
|