You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ovaCNeurofeedbackSwitch.h 372B

1234567891011121314151617181920212223
  1. #pragma once
  2. #include "ova_defines.h"
  3. #include <OMKOutput.h>
  4. #include <OMKTransform.h>
  5. class CNeurofeedbackSwitch : public OMK::SimulatedObject
  6. {
  7. public:
  8. DECLARE_OBJECT_FACTORY(CNeurofeedbackSwitch);
  9. virtual void init();
  10. virtual void compute();
  11. virtual bool processEvent(OMK::Event* pEvent);
  12. bool m_button[1024];
  13. Position _Position_;
  14. Position _FarAway_;
  15. };