Exemplo n.º 1
0
 internal void OnUpdateFamily(long familyId, bool changeFaction) => FamilyRefresh?.Invoke(new Tuple <long, bool>(familyId, changeFaction), null);
        internal void OnUpdateFamily(long familyId, bool changeFaction)
        {
            Tuple <long, bool> tu = new Tuple <long, bool>(familyId, changeFaction);

            FamilyRefresh?.Invoke(tu, null);
        }
Exemplo n.º 3
0
 private void OnFamilyRefresh(string worldgroup, long FamilyId)
 {
     FamilyRefresh?.Invoke(new Tuple <string, long>(worldgroup, FamilyId), new EventArgs());
 }
Exemplo n.º 4
0
 internal void OnUpdateFamily(long familyId) => FamilyRefresh?.Invoke(familyId, null);
Exemplo n.º 5
0
 private void OnFamilyRefresh(long FamilyId)
 {
     FamilyRefresh?.Invoke(FamilyId, new EventArgs());
 }