Credits resource

This commit is contained in:
Marco 2025-03-01 14:15:03 +01:00
commit 3fbadeecd7
5 changed files with 47 additions and 0 deletions

View file

@ -0,0 +1,12 @@
using Godot;
namespace Cirno.Scripts.Resources;
[GlobalClass]
public partial class CreditsEntry : Resource
{
[Export]
public string Name { get; set; }
[Export]
public string Contribution { get; set; }
}