18 lines
323 B
C#
18 lines
323 B
C#
![]() |
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;
|
||
|
}
|
||
|
}
|