12 lines
199 B
C#
12 lines
199 B
C#
![]() |
using Godot;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using Godot.Collections;
|
||
|
|
||
|
namespace Rokojori
|
||
|
{
|
||
|
public interface iLocalizable
|
||
|
{
|
||
|
public void UpdateLocalization();
|
||
|
}
|
||
|
}
|