Files
2020-03-01 18:45:03 +01:00

14 lines
300 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ReallifeGamemode.Server.Core.API.API
{
public interface IColShapeAPI
{
IColShape CreateCyclinder(Position position, float height, float range);
IColShape CreateSphere(Position position, float range);
}
}