mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-01 11:05:34 +00:00
Credits resource
This commit is contained in:
parent
f91df43caa
commit
3fbadeecd7
5 changed files with 47 additions and 0 deletions
12
Scripts/Resources/CreditsCollection.cs
Normal file
12
Scripts/Resources/CreditsCollection.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using Godot;
|
||||
using Godot.Collections;
|
||||
|
||||
namespace Cirno.Scripts.Resources;
|
||||
|
||||
[GlobalClass]
|
||||
public partial class CreditsCollection : Resource
|
||||
{
|
||||
[Export]
|
||||
public Array<CreditsEntry> Credits { get; private set; } = new();
|
||||
|
||||
}
|
||||
1
Scripts/Resources/CreditsCollection.cs.uid
Normal file
1
Scripts/Resources/CreditsCollection.cs.uid
Normal file
|
|
@ -0,0 +1 @@
|
|||
uid://buq8eurx510ps
|
||||
12
Scripts/Resources/CreditsEntry.cs
Normal file
12
Scripts/Resources/CreditsEntry.cs
Normal 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; }
|
||||
}
|
||||
1
Scripts/Resources/CreditsEntry.cs.uid
Normal file
1
Scripts/Resources/CreditsEntry.cs.uid
Normal file
|
|
@ -0,0 +1 @@
|
|||
uid://bc4f4ggvk3ktf
|
||||
Loading…
Add table
Add a link
Reference in a new issue