1
Fork 0
mirror of https://github.com/thegeneralist01/Scene-Manager-DevRepo synced 2026-01-11 23:50:29 +01:00

Delete Hints.cs

This commit is contained in:
Rich 2020-12-06 07:40:37 -07:00 committed by GitHub
parent 51c5808fe3
commit d1ffe1c9ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,17 +0,0 @@
using Rage;
namespace SceneManager
{
class Hints
{
internal static bool Enabled { get; set; } = SettingsMenu.hints.Checked;
internal static void Display(string message)
{
if (Enabled)
{
Game.DisplayNotification($"{message}");
}
}
}
}