HeavenStudio/Assets/Scripts/GameProperties.cs
patataofcourse 76f87823e2 rename main namespace to HeavenStudio
also remove song.wav you will not be missed
2022-03-13 02:44:50 +01:00

17 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;
}
}
}