mirror of
https://github.com/MikuLeaks/MikuSB.git
synced 2026-06-04 07:44:00 +00:00
VirCaptureLevel_EnterLevel
This commit is contained in:
19
Common/Data/Excel/VirCaptureCaptureRegionExcel.cs
Normal file
19
Common/Data/Excel/VirCaptureCaptureRegionExcel.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace MikuSB.Data.Excel;
|
||||
|
||||
[ResourceEntity("dlc/vircapture/captureregion.json")]
|
||||
public class VirCaptureCaptureRegionExcel : ExcelResource
|
||||
{
|
||||
[JsonProperty("Id")] public uint Id { get; set; }
|
||||
[JsonProperty("StartTime")] public string StartTime { get; set; } = "";
|
||||
[JsonProperty("EndTime")] public string EndTime { get; set; } = "";
|
||||
[JsonProperty("MapId")] public uint MapId { get; set; }
|
||||
|
||||
public override uint GetId() => Id;
|
||||
|
||||
public override void Loaded()
|
||||
{
|
||||
GameData.VirCaptureCaptureRegionData[Id] = this;
|
||||
}
|
||||
}
|
||||
@@ -8,6 +8,7 @@ public class VirCaptureTimeExcel : ExcelResource
|
||||
[JsonProperty("Id")] public uint Id { get; set; }
|
||||
[JsonProperty("StartTime")] public string StartTime { get; set; } = "";
|
||||
[JsonProperty("EndTime")] public string EndTime { get; set; } = "";
|
||||
[JsonProperty("CaptureRegionId")] public List<uint> CaptureRegionId { get; set; } = [];
|
||||
|
||||
public override uint GetId() => Id;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user