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.

ILifeCycle.h 109B

123456789101112
  1. #pragma once
  2. class ILifeCycle
  3. {
  4. public:
  5. virtual void begin()
  6. {}
  7. virtual void loop()
  8. {}
  9. };