Files
reallife-gamemode/ReallifeGamemode.Server.Core.RageMP/RageColShapeAPI.cs
2020-03-01 18:45:03 +01:00

22 lines
512 B
C#

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();
}
}
}