18 lines
382 B
C#
Raw Normal View History

2024-06-07 00:47:07 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
namespace BangerTypes
{
[Serializable]
2024-06-07 00:47:07 +02:00
public class Rhys
{
public Note[] notes;
public string artist;
public string title;
public int track_time;
public string audio; // Base64 encoded
public string cover_art; // Base64 encoded
}
}