diff --git a/Example/Resources/Vehicles/VehicleState.cs b/Example/Resources/Vehicles/VehicleState.cs
index 7792bcd..3829e7f 100644
--- a/Example/Resources/Vehicles/VehicleState.cs
+++ b/Example/Resources/Vehicles/VehicleState.cs
@@ -1,11 +1,22 @@
namespace Example.Resources.Vehicles
{
- public enum VehicleState: int
+ public enum VehicleState : int
{
+#if false
+#endif
+ ///
+ /// The broken state
+ ///
Broken = 1,
+ ///
+ /// The used state
+ ///
Used,
+ ///
+ /// The new state
+ ///
New
}
}
\ No newline at end of file