mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-12 13:04:33 +01:00
17 lines
346 B
C#
17 lines
346 B
C#
namespace KianaBH.Data.Excel;
|
|
|
|
[ResourceEntity("AvatarTutorial.json")]
|
|
public class AvatarTutorialExcel : ExcelResource
|
|
{
|
|
public uint ActivityID { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return (int)ActivityID;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.AvatarTutorialData.Add(GetId(), this);
|
|
}
|
|
} |