33 lines
433 B
C#
33 lines
433 B
C#
using Gameplay.Common;
|
|
using Gameplay.Unit;
|
|
|
|
namespace Gameplay.Area
|
|
{
|
|
using UnityEngine;
|
|
|
|
public class UnitSelectManager
|
|
{
|
|
|
|
public GameUnit selectUnit;
|
|
|
|
public GameObject objEffectSelect;
|
|
public GameObject objEffectTarget;
|
|
|
|
public void Init()
|
|
{
|
|
|
|
}
|
|
|
|
public void OnSelected()
|
|
{
|
|
|
|
}
|
|
|
|
public void OnUnSelected()
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|