mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-11 01:05:54 +00:00
20 lines
352 B
C#
20 lines
352 B
C#
|
|
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; }
|
||
|
|
|
||
|
|
[Export]
|
||
|
|
public bool ShowAuthor { get; set; }
|
||
|
|
|
||
|
|
[Export]
|
||
|
|
public AudioStream Track { get; set; }
|
||
|
|
}
|