- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using SimpleJSON;
- public class BaseConfig {
- public int id;
- public int sort;
- public virtual void Init(JSONNode json)
- {
- id = json["id"].AsInt;
- sort = json["sort"].AsInt;
- }
- }
|