using Godot; using System.Collections; using System.Collections.Generic; using Godot.Collections; namespace Rokojori { [Tool] [GlobalClass] public partial class LocalizedString:Resource { public virtual string GetLocalizedString( LocaleCode localeCode ) { return ""; } } }