#25 Payment-related features, including example showing how to use them.

This commit is contained in:
Casper Warden
2020-12-01 15:48:46 +00:00
parent 2a37224908
commit c584bbab77
7 changed files with 250 additions and 0 deletions

View File

@@ -30,6 +30,7 @@ import { BulkUpdateInventoryEvent } from '../events/BulkUpdateInventoryEvent';
import { InventoryResponseEvent } from '../events/InventoryResponseEvent';
import { LandStatsEvent } from '../events/LandStatsEvent';
import { SimStatsEvent } from '../events/SimStatsEvent';
import { BalanceUpdatedEvent } from '../events/BalanceUpdatedEvent';
export class ClientEvents
{
@@ -66,4 +67,5 @@ export class ClientEvents
onBulkUpdateInventoryEvent: Subject<BulkUpdateInventoryEvent> = new Subject<BulkUpdateInventoryEvent>();
onLandStatReplyEvent: Subject<LandStatsEvent> = new Subject<LandStatsEvent>();
onSimStats: Subject<SimStatsEvent> = new Subject<SimStatsEvent>();
onBalanceUpdated: Subject<BalanceUpdatedEvent> = new Subject<BalanceUpdatedEvent>();
}