Skip to content

Commit 07d5b56

Browse files
committed
Use block-scoped namespace in VanillaVehicleList.cs
1 parent 0a2224b commit 07d5b56

1 file changed

Lines changed: 29 additions & 28 deletions

File tree

Lines changed: 29 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,33 @@
1-
namespace S1API.Vehicles;
2-
3-
/// <summary>
4-
/// The vehicles available in vanilla.
5-
/// </summary>
6-
public enum VanillaVehicleList
1+
namespace S1API.Vehicles
72
{
83
/// <summary>
9-
/// The Bruiser vehicle.
4+
/// The vehicles available in vanilla.
105
/// </summary>
11-
Bruiser,
12-
/// <summary>
13-
/// The Cheetah vehicle.
14-
/// </summary>
15-
Cheetah,
16-
/// <summary>
17-
/// The Dinkler vehicle.
18-
/// </summary>
19-
Dinkler,
20-
/// <summary>
21-
/// The Hounddog vehicle.
22-
/// </summary>
23-
Hounddog,
24-
/// <summary>
25-
/// The Shitbox vehicle.
26-
/// </summary>
27-
Shitbox,
28-
/// <summary>
29-
/// The Veeper vehicle.
30-
/// </summary>
31-
Veeper,
6+
public enum VanillaVehicleList
7+
{
8+
/// <summary>
9+
/// The Bruiser vehicle.
10+
/// </summary>
11+
Bruiser,
12+
/// <summary>
13+
/// The Cheetah vehicle.
14+
/// </summary>
15+
Cheetah,
16+
/// <summary>
17+
/// The Dinkler vehicle.
18+
/// </summary>
19+
Dinkler,
20+
/// <summary>
21+
/// The Hounddog vehicle.
22+
/// </summary>
23+
Hounddog,
24+
/// <summary>
25+
/// The Shitbox vehicle.
26+
/// </summary>
27+
Shitbox,
28+
/// <summary>
29+
/// The Veeper vehicle.
30+
/// </summary>
31+
Veeper,
32+
}
3233
}

0 commit comments

Comments
 (0)