Skip to content

Instantly share code, notes, and snippets.

@pawelsawicz
Created May 23, 2016 00:31
Show Gist options
  • Save pawelsawicz/185e1cb670bf1701376377795ebd2321 to your computer and use it in GitHub Desktop.
Save pawelsawicz/185e1cb670bf1701376377795ebd2321 to your computer and use it in GitHub Desktop.
class Player
{
bool ChckPlayer(int i, int j){
CClient *firstClient = clientList[i];
CClient *secondClient = clientList[j];
}
}
class AnotherClass{
Player *player
AnotherClass(){
player = new Player();
}
~AnotherClass(){
delete(player);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment