13 lines
286 B
C#
13 lines
286 B
C#
|
|
using System.Collections;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using UnityEngine;
|
||
|
|
|
||
|
|
namespace Ichni.RhythmGame
|
||
|
|
{
|
||
|
|
public class SongStatusSave
|
||
|
|
{
|
||
|
|
public bool isCompleted;
|
||
|
|
public string additionalInfo;
|
||
|
|
public Dictionary<string, BeatmapSave> beatmapSaves;
|
||
|
|
}
|
||
|
|
}
|