SAMP.NET/sampdotnet/Core/Exceptions.cs
2022-08-27 18:18:04 +01:00

10 lines
203 B
C#

using System;
namespace SAMP.Core
{
internal class Exceptions
{
// API
public static Exception TextDrawDestroyed = new Exception("The TextDraw has been destroyed.");
};
};