14 lines
362 B
C#
14 lines
362 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
namespace BITKit
|
|
{
|
|
public record PlayerConfig
|
|
{
|
|
public static readonly PlayerConfig Singleton = new();
|
|
public float Sensitivity = 1.81f;
|
|
public float TouchSensitivity = 0.22f;
|
|
public float M_Yaw = 0.022f;
|
|
public float Fov = 75;
|
|
}
|
|
} |