mirror of https://github.com/axmolengine/axmol.git
18 lines
257 B
C
18 lines
257 B
C
|
|
||
|
#ifndef __PLAYER_SERVICE_PROTOCOL_H_
|
||
|
#define __PLAYER_SERVICE_PROTOCOL_H_
|
||
|
|
||
|
#include "PlayerMacros.h"
|
||
|
|
||
|
PLAYER_NS_BEGIN
|
||
|
|
||
|
class PlayerServiceProtocol
|
||
|
{
|
||
|
public:
|
||
|
virtual ~PlayerServiceProtocol() {};
|
||
|
};
|
||
|
|
||
|
PLAYER_NS_END
|
||
|
|
||
|
#endif // __PLAYER_SERVICE_PROTOCOL_H_
|