cirnogodot/Scripts/Resources/MusicResource.cs

23 lines
410 B
C#
Raw Normal View History

2025-02-27 09:14:00 +01:00
using System;
using Godot;
namespace Cirno.Scripts.Resources;
[GlobalClass]
public partial class MusicResource : Resource
{
[Export]
public string TrackName { get; set; }
[Export]
public string AuthorName { get; set; }
2025-02-27 10:01:50 +01:00
[Export]
public string Description { get; set; }
2025-02-27 09:14:00 +01:00
[Export]
public bool ShowAuthor { get; set; }
[Export]
public AudioStream Track { get; set; }
}