using Godot; using System.Collections; using System.Collections.Generic; using Godot.Collections; namespace Rokojori { [Tool] [GlobalClass] public partial class LocaleTextEntry:LocalizedString { [Export] public LocaleCode code; [Export(PropertyHint.MultilineText)] public string content; } }