mirror of https://github.com/bsnes-emu/bsnes.git
12 lines
247 B
C++
12 lines
247 B
C++
|
void Player::serialize(serializer& s) {
|
||
|
s.integer(status.enable);
|
||
|
s.integer(status.rumble);
|
||
|
|
||
|
s.integer(status.logoDetected);
|
||
|
s.integer(status.logoCounter);
|
||
|
|
||
|
s.integer(status.packet);
|
||
|
s.integer(status.send);
|
||
|
s.integer(status.recv);
|
||
|
}
|