mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 13:54:43 +01:00
Init enter game
This commit is contained in:
20
Common/Data/Excel/GodWarRelationDataExcel.cs
Normal file
20
Common/Data/Excel/GodWarRelationDataExcel.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace KianaBH.Data.Excel;
|
||||
|
||||
[ResourceEntity("GodWarRelationData.json")]
|
||||
public class GodWarRelationDataExcel : ExcelResource
|
||||
{
|
||||
public int AvatarID { get; set; }
|
||||
public int RoleID { get; set; }
|
||||
public int Level { get; set; }
|
||||
public int MaxLevel { get; set; }
|
||||
|
||||
public override int GetId()
|
||||
{
|
||||
return AvatarID;
|
||||
}
|
||||
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.GodWarRelationData.Add(this);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user