forked from Kolyah35/minecraft-pe-0.6.1
15 lines
450 B
C++
Executable File
15 lines
450 B
C++
Executable File
#ifndef NET_MINECRAFT_CLIENT_PLAYER__ITouchScreenModel_H__
|
|
#define NET_MINECRAFT_CLIENT_PLAYER__ITouchScreenModel_H__
|
|
|
|
#include "../../../../platform/input/Mouse.h"
|
|
|
|
class ITouchScreenModel
|
|
{
|
|
public:
|
|
virtual ~ITouchScreenModel() {}
|
|
virtual int getPointerId(const MouseAction& m) { return m.pointerId; }
|
|
virtual int getPointerId(int x, int y, int pid) { return pid; }
|
|
};
|
|
|
|
#endif /*NET_MINECRAFT_CLIENT_PLAYER__ITouchScreenModel_H__*/
|