mirror of
https://github.com/thegeneralist01/Scene-Manager-DevRepo
synced 2026-01-11 23:50:29 +01:00
17 lines
335 B
C#
17 lines
335 B
C#
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}");
|
|
}
|
|
}
|
|
}
|
|
}
|