Changeset 3a79253 in network-game
- Timestamp:
- Feb 24, 2013, 12:10:47 AM (12 years ago)
- Branches:
- master
- Children:
- ca44f82
- Parents:
- 01d0d00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
client/Client/main.cpp
r01d0d00 r3a79253 19 19 #include <iostream> 20 20 21 #include <map> 22 21 23 #include <allegro5/allegro.h> 22 24 #include <allegro5/allegro_font.h> … … 70 72 71 73 bool doexit; 74 75 map<unsigned int, Player> mapPlayers; 72 76 73 77 Window* wndLogin; … … 441 445 Player p("", ""); 442 446 p.deserialize(msg.buffer); 443 447 mapPlayers[p.id] = p; 448 449 cout << "p.id: " << p.id << endl; 444 450 cout << "p.name: " << p.name << endl; 445 451 cout << "p.pos.x: " << p.pos.x << endl;
Note:
See TracChangeset
for help on using the changeset viewer.