00001 //*** Platform_NULL_Input_MouseDevice.cpp *** 00002 00003 #include "Platform_NULL_Input_MouseDevice.h" 00004 00005 //*** Constructor *** 00006 00007 Platform_NULL_Input_MouseDevice::Platform_NULL_Input_MouseDevice() 00008 { 00009 } 00010 00011 00012 //*** GetPosition *** 00013 00014 void Platform_NULL_Input_MouseDevice::GetPosition(float& x, float& y) const 00015 { 00016 } 00017 00018 00019 //*** IsLeftButtonDown *** 00020 00021 bool Platform_NULL_Input_MouseDevice::IsLeftButtonDown() const 00022 { 00023 return false; 00024 } 00025 00026 00027 //*** IsRightButtonDown *** 00028 00029 bool Platform_NULL_Input_MouseDevice::IsRightButtonDown() const 00030 { 00031 return false; 00032 } 00033