public static unsafe extern void Transceiver_RegisterStateUpdatedCallback(IntPtr handle,
                                                                           StateUpdatedDelegate callback, IntPtr userData);
Exemple #2
0
 public TableController(GameTable gameTable, StateUpdatedDelegate stateUpdated)
 {
     Game         = gameTable;
     StateUpdated = stateUpdated;
     Deck         = new DeckController(Game.T, Game.Deck);
 }