SAMP.NET/sampdotnet/Core/Exceptions.cs

9 lines
182 B
C#
Raw Normal View History

2022-08-27 17:10:32 +00:00
using System;
namespace SAMP.Core {
internal class Exceptions {
// API
public static Exception TextDrawDestroyed = new Exception("The TextDraw has been destroyed.");
};
};