mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-07 11:15:53 +00:00
12 lines
223 B
C#
12 lines
223 B
C#
|
|
using Godot;
|
|||
|
|
|
|||
|
|
namespace Cirno.Scripts.Resources;
|
|||
|
|
|
|||
|
|
[GlobalClass]
|
|||
|
|
public partial class CreditsEntry : Resource
|
|||
|
|
{
|
|||
|
|
[Export]
|
|||
|
|
public string Name { get; set; }
|
|||
|
|
[Export]
|
|||
|
|
public string Contribution { get; set; }
|
|||
|
|
}
|