Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ... code ...
- enum Reason : int
- {
- Unspecified = 0,
- GameSaveSelected, // Add this
- }
- // ... code ...
- union // Data
- {
- // Additions start here
- struct
- {
- int fileId;
- } gameSaveSelected;
- // Additions end here
- };
- // ... code ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement