11 lines
152 B
C#
11 lines
152 B
C#
using UnityEngine;
|
|
|
|
namespace Shared.Runtime
|
|
{
|
|
public interface ILocalizable
|
|
{
|
|
void OnSelected();
|
|
void OnDeselected();
|
|
}
|
|
}
|
|
|