-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
61 additions
and
39 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
Zilon.Client/Assets/Zilon/Scripts/Models/Modals/QuitModalBehaviour.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
namespace Assets.Zilon.Scripts.Models.Modals | ||
{ | ||
/// <summary> | ||
/// Behaviour of modal. Specify command and vizualization of modal. | ||
/// </summary> | ||
public enum QuitModalBehaviour | ||
{ | ||
/// <summary> | ||
/// Ends game session. Go to title menu. | ||
/// </summary> | ||
QuitToTitleMenu = 1, | ||
|
||
/// <summary> | ||
/// Closes game. | ||
/// </summary> | ||
QuitGame = 2 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters