13 lines
354 B
C#
13 lines
354 B
C#
using UnityEngine;
|
|
|
|
namespace BingoBrain.Core
|
|
{
|
|
public static class vbadConst
|
|
{
|
|
public const float Time10ms = 0.01f;
|
|
public const float Time100ms = 0.1f;
|
|
|
|
public static WaitForEndOfFrame WaitForEndOfFrame = new WaitForEndOfFrame();
|
|
public static WaitForSeconds WaitFor100ms = new WaitForSeconds(Time100ms);
|
|
}
|
|
} |