Fixed problem with Trio faces not changing

This commit is contained in:
Starpelly
2021-12-23 19:58:48 -05:00
parent 88d23ef8cc
commit aa3f999721
15 changed files with 667 additions and 29 deletions

View File

@ -0,0 +1,16 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania
{
public class GameProperties
{
public class Latency
{
public static float early = 0.71f;
public static float perfect = 0.74f;
public static float late = 0.84f;
}
}
}