-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.cs
More file actions
12 lines (11 loc) · 743 Bytes
/
Copy pathConfig.cs
File metadata and controls
12 lines (11 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
namespace MicroHIDReturn;
public class Config
{
public string NoMicroHID { get; set; } = "<color=red>You dont have Micro HID to place.</color>";
public string NotInHands { get; set; } = "<color=yellow>Equip Micro HID.</color>";
public string PlacedMicroHID { get; set; } = "<color=green>You placed Micro HID on pedestal.</color>";
public string PlacedMicroHIDCharging { get; set; } = "<color=green>You placed Micro HID on pedestal. It start charging.</color>";
public bool ChargeOnPedestal {get; set;} = true;
public bool PlayChargingSound {get; set;} = true; //Not working if ChargeOnPedestal = false
public float ChargeStep {get; set;} = 0.005f; //Charge per second. 1=100% ; 0.01=1% ; 0.005=0.5%
}