2015-05-18 02:20:15 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* *
|
2015-11-10 05:21:49 +00:00
|
|
|
* Project64 - A Nintendo 64 emulator. *
|
2015-05-18 02:20:15 +00:00
|
|
|
* http://www.pj64-emu.com/ *
|
|
|
|
* Copyright (C) 2012 Project64. All rights reserved. *
|
|
|
|
* *
|
|
|
|
* License: *
|
|
|
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
class Rumblepak
|
|
|
|
{
|
|
|
|
public:
|
2015-12-06 09:59:58 +00:00
|
|
|
static void ReadFrom(uint8_t * command);
|
|
|
|
static void WriteTo(int Control, uint8_t * command);
|
2015-05-18 02:20:15 +00:00
|
|
|
};
|