mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 15:03:57 +00:00
19 lines
412 B
C#
19 lines
412 B
C#
namespace MikuSB.Data.Excel;
|
|
|
|
[ResourceEntity("house/FurniturePos.json")]
|
|
public class HouseFurniturePosExcel : ExcelResource
|
|
{
|
|
public uint AreaId { get; set; }
|
|
public uint GroupId { get; set; }
|
|
|
|
public override uint GetId()
|
|
{
|
|
return (AreaId << 48) | (GroupId << 32);
|
|
}
|
|
|
|
public override void Loaded()
|
|
{
|
|
GameData.HouseFurniturePosData.TryAdd(GetId(), this);
|
|
}
|
|
}
|