diff options
author | sicarius <devnull@localhost> | 2007-02-26 22:25:01 +0100 |
---|---|---|
committer | sicarius <devnull@localhost> | 2007-02-26 22:25:01 +0100 |
commit | f61eb900879fe941460a284ff9e4681b0958b944 (patch) | |
tree | e32e6e091b0d025e071f3eab1dbf52c04d107d1d /source/Concept/Framework/modules/input | |
parent | 343397ecf6e8ba9ca94fc61e27c241139eff120b (diff) | |
download | rc2007-soccer-f61eb900879fe941460a284ff9e4681b0958b944.tar rc2007-soccer-f61eb900879fe941460a284ff9e4681b0958b944.zip |
SoccerTeam, Stuff from Magdeburg
Diffstat (limited to 'source/Concept/Framework/modules/input')
-rwxr-xr-x | source/Concept/Framework/modules/input/mouse_sensor.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source/Concept/Framework/modules/input/mouse_sensor.h b/source/Concept/Framework/modules/input/mouse_sensor.h index b3d1b1a..1f2922a 100755 --- a/source/Concept/Framework/modules/input/mouse_sensor.h +++ b/source/Concept/Framework/modules/input/mouse_sensor.h @@ -214,6 +214,16 @@ public: {
return positionY;
}
+
+ void AdjustPositionX(float newPosX)
+ {
+ this->positionX = newPosX;
+ }
+
+ void AdjustPositionY(float newPosY)
+ {
+ this->positionY = newPosY;
+ }
};
#endif |