인벤토리UI

This commit is contained in:
2026-06-24 15:12:21 +09:00
parent 083fcf63ce
commit ef7705aa89
179 changed files with 12003 additions and 10 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
namespace RapidIcon_1_7_4
{
[Serializable]
public class IconSetData
{
public List<IconSet> iconSets;
public IconSetData()
{
iconSets = new List<IconSet>();
}
}
}