2025-01-26 09:15:28 +00:00
|
|
|
using Godot;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using Godot.Collections;
|
|
|
|
|
|
|
|
namespace Rokojori
|
|
|
|
{
|
|
|
|
[Tool]
|
2025-02-12 16:48:15 +00:00
|
|
|
[GlobalClass,Icon("res://addons/rokojori_action_library/Icons/LocalizedString.svg")]
|
|
|
|
public partial class LocaleTextEntry:Resource
|
2025-01-26 09:15:28 +00:00
|
|
|
{
|
|
|
|
[Export]
|
|
|
|
public LocaleCode code;
|
|
|
|
|
|
|
|
[Export(PropertyHint.MultilineText)]
|
|
|
|
public string content;
|
|
|
|
}
|
|
|
|
}
|