24 lines
341 B
C#
24 lines
341 B
C#
|
|
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>();
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|