30 lines
481 B
C#
Raw Normal View History

2024-12-14 18:27:59 +08:00
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<string> args = new List<string>();
}
public class DictionaryAction : Action
{
public Dictionary<string, string> args = new Dictionary<string, string>();
}
2024-12-14 18:27:59 +08:00
}