Description:
Add missing component and message.
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r710:d6b7c42f17f8 -

@@ -0,0 +1,17
1 using Encompass;
2 using System;
3
4 namespace isometricparkfna.Components {
5 public enum EntryPolicy {
6 Unspecified,
7 Free,
8 Donations,
9 EntryFee
10 }
11
12 public struct EntryPolicyComponent : IComponent {
13 public EntryPolicy PrimaryEntryPolicy;
14 public Decimal PrimaryEntryFee;
15
16 }
17 }
@@ -0,0 +1,10
1
2 using Encompass;
3 using isometricparkfna.Components;
4
5 namespace isometricparkfna.Messages {
6
7 public struct SetEntryPolicyMessage : IMessage {
8 public EntryPolicyComponent NewEntryPolicyComponent;
9 }
10 }
You need to be logged in to leave comments. Login now