17 lines
239 B
C#
17 lines
239 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace AibisDream
|
|
{
|
|
public interface IMoveable
|
|
{
|
|
void StartMove();
|
|
|
|
void Move(Vector2 mousePos);
|
|
|
|
void StopMove();
|
|
}
|
|
}
|
|
|