13 lines
326 B
C#
13 lines
326 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using ReallifeGamemode.Server.Types;
|
|
|
|
namespace ReallifeGamemode.Server.Core.API
|
|
{
|
|
public interface IMarkerAPI
|
|
{
|
|
IMarker CreateMarker(MarkerType markerType, Position position, Position direction, Position rotation, float scale, Color color);
|
|
}
|
|
}
|