Complete Data Loading and Managing Logic #4

Merged
TheRedApricot merged 5 commits from :main into main 2025-07-12 12:27:01 +08:00
6 changed files with 59 additions and 14 deletions
Showing only changes of commit c624fd15b2 - Show all commits

View File

@ -0,0 +1,22 @@
using System.Collections.Generic;
namespace Data
{
public struct PackAbout
{
public string name;
public string description;
public string author;
}
public class DefinePack
{
public string packID;
public PackAbout packAbout;
public List<Define> defines;
public void LoadPack(string packPath)
{
}
}
}

View File

@ -1,12 +0,0 @@
namespace Data
{
public class DefineSourceData
{
public string className;
public string defName;
public string label;
public string discription;
}
}