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

7 lines
82 B
C#

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