Clone of Akilla's ac2d @ https://github.com/deregtd/AC2D

CButton.h 147B

123456789101112
  1. #ifndef CBUTTON_H
  2. #define CBUTTON_H
  3. #include "CWindow.h"
  4. class CButton : public CWindow
  5. {
  6. public:
  7. virtual void OnButtonClick() = 0;
  8. };
  9. #endif