mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 10:55:35 +00:00
15 lines
No EOL
324 B
C#
15 lines
No EOL
324 B
C#
using Godot;
|
|
|
|
namespace Cirno.Scripts.Resources;
|
|
|
|
[GlobalClass]
|
|
public partial class CreditsEntry : Resource
|
|
{
|
|
[Export]
|
|
public string Name { get; private set; }
|
|
[Export]
|
|
public string Contribution { get; private set; }
|
|
|
|
[Export]
|
|
public LabelSettings CustomLabelSettings { get; private set; }
|
|
} |