Blame view

emulateur/epsilon-nofrendo/apps/nes/nes_controller.h 283 Bytes
6663b6c9   adorian   projet complet av...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  #ifndef NES_CONTROLLER_H
  #define NES_CONTROLLER_H
  
  #include <escher.h>
  #include "nes_view.h"
  
  class AppsContainer;
  
  namespace NES {
  
  class NesController : public ViewController {
    public:
      NesController();
      View * view() override;
    private:
      NesView m_view;
  };
  
  }
  
  #endif