17 lines
363 B
C#
17 lines
363 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using UnityEngine;
|
|
|
|
namespace BangerTypes
|
|
{
|
|
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
|
|
}
|
|
} |