mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 19:55:09 +00:00
17 lines
347 B
C#
17 lines
347 B
C#
|
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;
|
||
|
}
|
||
|
}
|
||
|
}
|