13 lines
336 B
C#
13 lines
336 B
C#
using Sandbox;
|
|
|
|
namespace VeloX;
|
|
|
|
|
|
[GameResource( "Wheel Friction", "whfric", "Wheel Friction", Category = "VeloX", Icon = "radio_button_checked" )]
|
|
public class TirePreset : GameResource
|
|
{
|
|
public FrictionPreset Longitudinal { get; set; }
|
|
public FrictionPreset Lateral { get; set; }
|
|
public FrictionPreset Aligning { get; set; }
|
|
}
|