00001 #include "StdAfx.h" 00002 #include "InputDevice.h" 00003 00004 CInputDevice::CInputDevice() 00005 { 00006 00007 } 00008 00009 CInputDevice::~CInputDevice() 00010 { 00011 00012 } 00013 00014 bool CInputDevice::IsOfType(eEntityType eType) 00015 { 00016 if(eType == Entity_InputDevice) 00017 return true; 00018 00019 return CEntity::IsOfType(eType); 00020 }