This commit is contained in:
SoulliesOfficial
2025-06-13 14:59:58 -04:00
parent 27529d44dc
commit b9e6a9ab25
143 changed files with 7254 additions and 1906 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Ichni.RhythmGame
{
public class BeatmapSave
{
public float accuracy;
public bool isFullCombo;
public bool isAllPerfect;
}
}

View File

@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 6b751bb37660d844780656591830afff
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -1,18 +1,26 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Ichni.RhythmGame;
using Sirenix.OdinInspector;
using UnityEngine;
public class SongSelectionManager : MonoBehaviour
namespace Ichni.Menu
{
// Start is called before the first frame update
void Start()
public partial class SongSelectionManager : SerializedMonoBehaviour
{
}
public static SongSelectionManager instance;
// Update is called once per frame
void Update()
{
private void Awake()
{
instance = this;
}
}
}
public partial class SongSelectionManager
{
}
}

View File

@@ -0,0 +1,13 @@
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;
}
}

View File

@@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 0e15d295a0ae77041ad0269ab3801bc3
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant: