Research portable Memory game | Исследовать портируемую игру Память
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 달 전
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