Files
aibis-dream/Assets/Scripts/Framework/Moveable/IMoveable.cs
T
2024-11-23 21:20:10 +08:00

17 lines
249 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace AibisDream.Framework
{
public interface IMoveable
{
void StartMove();
void Move(Vector2 mousePos);
void StopMove();
}
}