mirror of
https://github.com/Oibaf66/frodo-wii.git
synced 2024-11-22 19:39:24 +01:00
22 lines
242 B
C
22 lines
242 B
C
|
#ifndef __MOCKS_C64_H__
|
||
|
#define __MOCKS_C64_H__
|
||
|
|
||
|
/* Network connection type */
|
||
|
enum
|
||
|
{
|
||
|
NONE,
|
||
|
CONNECT,
|
||
|
MASTER,
|
||
|
CLIENT
|
||
|
};
|
||
|
|
||
|
class C64
|
||
|
{
|
||
|
public:
|
||
|
int network_connection_type;
|
||
|
};
|
||
|
|
||
|
extern C64 *TheC64;
|
||
|
|
||
|
#endif /*__MOCKS_C64_H__ */
|