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

9 lines
182 B
C#

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