Starting to transfer everything to Tool
This commit is contained in:
18
Mouse.h
Normal file
18
Mouse.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#pragma once
|
||||
#include "PartInstance.h"
|
||||
#pragma once
|
||||
|
||||
class Mouse
|
||||
{
|
||||
public:
|
||||
Mouse(void);
|
||||
~Mouse(void);
|
||||
int x, y;
|
||||
Instance * getTarget();
|
||||
Vector3 getPosition();
|
||||
bool isMouseOnScreen();
|
||||
bool isMouseDown();
|
||||
void setMouseDown(bool mouseDown);
|
||||
private:
|
||||
bool mouseDown;
|
||||
};
|
||||
Reference in New Issue
Block a user