Exemple #1
0
 internal CommunityGoalRewardEvent InvokeEvent(CommunityGoalRewardEvent arg)
 {
     if (_api.ValidateEvent(arg))
     {
         CommunityGoalReward?.Invoke(_api, arg);
     }
     return(arg);
 }
 private static void AssertEvent(CommunityGoalRewardEvent @event)
 {
     Assert.NotNull(@event);
     Assert.Equal(DateTime.Parse("2017-08-14T13:20:28Z"), @event.Timestamp);
     Assert.Equal(EventName, @event.Event);
     Assert.Equal(726, @event.GoalId);
     Assert.Equal("Alliance Research Initiative – Trade", @event.Name);
     Assert.Equal("Kaushpoos", @event.System);
     Assert.Equal(123435, @event.Reward);
 }
 internal void InvokeCommunityGoalRewardEvent(CommunityGoalRewardEvent arg)
 {
     CommunityGoalRewardEvent?.Invoke(this, arg);
 }
Exemple #4
0
 internal void InvokeCommunityGoalRewardEvent(CommunityGoalRewardEvent arg) => CommunityGoalRewardEvent?.Invoke(null, arg);