riversong code showcase
This commit is contained in:
20
Source/Riversong/Game/Onboarding/OnboardingEvents.cs
Normal file
20
Source/Riversong/Game/Onboarding/OnboardingEvents.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace DanieleMarotta.RiversongCodeShowcase
|
||||
{
|
||||
[Flags]
|
||||
public enum OnboardingEvents
|
||||
{
|
||||
None = 0,
|
||||
|
||||
FirstHousePlaced = 1 << 0,
|
||||
|
||||
FirstHouseUpgrade = 1 << 1,
|
||||
|
||||
FirstRoadFailure = 1 << 2,
|
||||
|
||||
FirstPopulationMilestone = 1 << 3,
|
||||
|
||||
FirstBuildingPlaced = 1 << 4
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user