초기커밋

This commit is contained in:
2025-05-01 07:20:41 +09:00
commit 98bb2e3c5c
2747 changed files with 646947 additions and 0 deletions

View File

@@ -0,0 +1,59 @@
// <auto-generated>
// generated using ContentTool. DO NOT EDIT!
// </auto-generated>
using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using System.Collections.ObjectModel;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json;
namespace MetaAssets
{
#pragma warning disable
public partial class AttributeEnchantMetaDataMutable
{
[JsonProperty("Rarity")]
public string Rarity { get; set; }
[JsonProperty("ItemID")]
public int ItemID { get; set; }
[JsonProperty("ItemCount")]
public int ItemCount { get; set; }
}
public partial class AttributeEnchantMetaTableMutable
{
[JsonProperty("AttributeEnchantMetaDataList")]
public IList<AttributeEnchantMetaDataMutable> AttributeEnchantMetaDataList { get; set; }
}
//////////////////////////////
// readonly class
//////////////////////////////
public partial class AttributeEnchantMetaData
{
public readonly string Rarity;
public readonly int ItemID;
public readonly int ItemCount;
public AttributeEnchantMetaData(AttributeEnchantMetaDataMutable data)
{
Rarity = data.Rarity;
ItemID = data.ItemID;
ItemCount = data.ItemCount;
}
}
public partial class AttributeEnchantMetaTable
{
public readonly IReadOnlyList<AttributeEnchantMetaData> AttributeEnchantMetaDataList;
public AttributeEnchantMetaTable(AttributeEnchantMetaTableMutable data)
{
if(data.AttributeEnchantMetaDataList != null)
AttributeEnchantMetaDataList = data.AttributeEnchantMetaDataList.Select(x => new AttributeEnchantMetaData(x)).ToList().AsReadOnly();
}
}
}