17 lines
228 B
C#
17 lines
228 B
C#
using UnityEngine;
|
|
|
|
namespace AibisDream.Framework
|
|
{
|
|
public interface IMoveable
|
|
{
|
|
bool IsBlock { get; }
|
|
|
|
void StartMove();
|
|
|
|
void Move(Vector2 mousePos);
|
|
|
|
void StopMove();
|
|
}
|
|
}
|
|
|