using QFramework; using System.Collections; using System.Collections.Generic; using UnityEngine; namespace XMLTool { public class MoveOrAction : Action { public Vector3 to; public float time; } public class StringListAction : Action { public List args = new List(); } public class DictionaryAction : Action { public Dictionary args = new Dictionary(); } }