Description:
Add files I missed.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
@@ -0,0 +1,13 | |||
|
1 | ||
|
2 | ||
|
3 | using Microsoft.Xna.Framework; | |
|
4 | using Encompass; | |
|
5 | ||
|
6 | namespace isometricparkfna.Messages { | |
|
7 | public struct SetResolutionMessage : IMessage | |
|
8 | { | |
|
9 | public Vector2 resolution; | |
|
10 | public bool fullscreen; | |
|
11 | ||
|
12 | } | |
|
13 | } |
@@ -0,0 +1,23 | |||
|
1 | ||
|
2 | using Encompass; | |
|
3 | ||
|
4 | namespace isometricparkfna.Messages { | |
|
5 | ||
|
6 | public enum Window { | |
|
7 | Debug, | |
|
8 | Budget, | |
|
9 | Forest, | |
|
10 | News, | |
|
11 | Contracts, | |
|
12 | Contract, | |
|
13 | MainMenu, | |
|
14 | InGameMenu, | |
|
15 | Options | |
|
16 | } | |
|
17 | ||
|
18 | ||
|
19 | public struct ToggleWindowTypeMessage : IMessage | |
|
20 | { | |
|
21 | public Window Window; | |
|
22 | } | |
|
23 | } |
You need to be logged in to leave comments.
Login now