1234567891011121314151617181920212223242526272829303132 |
- using System;
- using Fort23.GameData;
- namespace Excel2Json
- {
- [Config(prefab = "PoetConfig.json")]
- public partial class PoetConfigHolder : ConfigHolder<PoetConfig>
{
- }
- [Serializable]
- public struct PoetConfig : IConfig
{
- public int GetID() {return ID;}
-
-
-
- public int ID;
-
-
-
- public string name;
- }
- }
|