Research portable Memory game | Исследовать портируемую игру Память
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.

4 mesi fa
123456789101112131415
  1. #include <string>
  2. #include <vector>
  3. #ifndef ctx_HEADER
  4. #define ctx_HEADER
  5. template <class T> class ctx_Controller {
  6. T context;
  7. ctx_Controller(const T &c) {
  8. context = c;
  9. }
  10. };
  11. #endif // ctx_HEADER