mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
27 lines
611 B
C#
27 lines
611 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EggLink.DanhengServer.Data.Excel
|
|
{
|
|
[ResourceEntity("PlaneEvent.json")]
|
|
public class PlaneEventExcel : ExcelResource
|
|
{
|
|
public int EventID { get; set; }
|
|
public int WorldLevel { get; set; }
|
|
public int Reward { get; set; }
|
|
|
|
public override int GetId()
|
|
{
|
|
return EventID * 10 + WorldLevel;
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.PlaneEventData.Add(GetId(), this);
|
|
}
|
|
}
|
|
}
|