Begin script abstraction
This commit is contained in:
17
ReallifeGamemode.Server.Core.API/IVehicle.cs
Normal file
17
ReallifeGamemode.Server.Core.API/IVehicle.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
|
||||
using ReallifeGamemode.Server.Types;
|
||||
|
||||
namespace ReallifeGamemode.Server.Core.API
|
||||
{
|
||||
public interface IVehicle : IEntity
|
||||
{
|
||||
VehicleModel Model { get; }
|
||||
|
||||
sbyte PrimaryColor { get; set; }
|
||||
|
||||
sbyte SecondaryColor { get; set; }
|
||||
|
||||
void Repair();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user