using System; using System.Collections.Generic; using System.Text; using ReallifeGamemode.Server.Core.API; using ReallifeGamemode.Server.Core.API.API; namespace ReallifeGamemode.Server.Core.RageMP { class RageColShapeAPI : IColShapeAPI { public IColShape CreateCyclinder(Position position, float height, float range) { throw new NotImplementedException(); } public IColShape CreateSphere(Position position, float range) { throw new NotImplementedException(); } } }