SAMP.NET/sampdotnet/Core/Interfaces/ICountable.cs
2022-08-27 18:16:44 +01:00

8 lines
97 B
C#

namespace SAMP.Core
{
public interface ICountable
{
int ID { get; }
};
};