Skip to content

Commit

Permalink
Add example for Comment and PreProcessorDirective in an Enum.
Browse files Browse the repository at this point in the history
  • Loading branch information
BlueBasher committed Jul 31, 2019
1 parent b125d59 commit 6acd77a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion Example/Resources/Vehicles/VehicleState.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
namespace Example.Resources.Vehicles
{
public enum VehicleState: int
public enum VehicleState : int
{
#if false
#endif
/// <summary>
/// The broken state
/// </summary>
Broken = 1,

/// <summary>
/// The used state
/// </summary>
Used,

/// <summary>
/// The new state
/// </summary>
New
}
}

0 comments on commit 6acd77a

Please sign in to comment.