-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix support for MissionSiteExpiredEvent
- Loading branch information
Konrad Jamrozik
committed
Jun 10, 2024
1 parent
dd2e3be
commit 62be03d
Showing
8 changed files
with
21 additions
and
27 deletions.
There are no files selected for viewing
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
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
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace UfoGameLib.Events; | ||
|
||
public static class GameEventName | ||
{ | ||
public const string AdvanceTimePlayerAction = "AdvanceTimePlayerAction"; | ||
public const string WorldEvent = "WorldEvent"; | ||
} |
This file was deleted.
Oops, something went wrong.
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
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,9 +1,8 @@ | ||
// codesync: UfoGameLib.Events.WorldEvent | ||
import type { GameEventBase } from './GameEvent' | ||
|
||
export type WorldEvent = MissionSiteExpiredEvent | ||
|
||
export type MissionSiteExpiredEvent = GameEventBase & { | ||
export type WorldEvent = GameEventBase & { | ||
readonly TargetId: number | ||
} | ||
|
||
export type WorldEventName = 'MissionSiteExpiredEvent' |
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