mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-08 18:55:07 +00:00
16 lines
342 B
C#
16 lines
342 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace HeavenStudio
|
|
{
|
|
public class GameProperties
|
|
{
|
|
public class Latency
|
|
{
|
|
public static float early = 0.71f;
|
|
public static float perfect = 0.74f;
|
|
public static float late = 0.84f;
|
|
}
|
|
}
|
|
}
|