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

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