14 lines
300 B
C#
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);
|
|
}
|
|
}
|