15 lines
368 B
C#
15 lines
368 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using ReallifeGamemode.Server.Types;
|
|
|
|
namespace ReallifeGamemode.Server.Core.API.API
|
|
{
|
|
public interface IVehicleAPI
|
|
{
|
|
IVehicle Spawn(VehicleModel model, Position position, Position rotation, sbyte primaryColor, sbyte secondaryColor);
|
|
|
|
IVehicle GetVehicleFromHandle(ulong handle);
|
|
}
|
|
}
|