Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ProjectBackup/C#/Mosleys/Mosleys.Shared/ESX/Client/ESX.Scaleform.cs
2022-10-29 18:17:27 +02:00

15 lines
745 B
C#

namespace Nexd.ESX.Client
{
public static partial class ESX
{
public static partial class Scaleform
{
public static dynamic Raw => ESX.Raw.Scaleform;
public static void ShowBreakingNews(string title, string message, string bottom, int sec) => Raw.ShowBreakingNews(title, message, bottom, sec);
public static void ShowFreemodeMessage(string title, string message, int sec) => Raw.ShowFreemodeMessage(title, message, sec);
public static void ShowPopupWarning(string title, string message, string footer, int sec) => Raw.ShowPopupWarning(title, message, footer, sec);
public static void ShowTrafficMovie(int sec) => Raw.ShowTrafficMovie(sec);
}
}
}