Blame view

src/main.cpp 219 Bytes
cd132533   Geoffrey PREUD'HOMME   Workflow initial
1
2
  /* Programme principal */
  
02310c8e   Geoffrey PREUD'HOMME   Demo inclusion
3
  #include "test.hpp"
ab4200c6   Geoffrey PREUD'HOMME   Test classe
4
  #include "testClasse.hpp"
fd0f6b67   Geoffrey PREUD'HOMME   Intégration de la...
5
  #include "sfmlTest.hpp"
cd132533   Geoffrey PREUD'HOMME   Workflow initial
6
7
  
  int main() {
ab4200c6   Geoffrey PREUD'HOMME   Test classe
8
9
10
      Geoffrey frogeye;
      frogeye.setN(42);
      helloWorld(frogeye.getN());
fd0f6b67   Geoffrey PREUD'HOMME   Intégration de la...
11
      sfmlTest();
cd132533   Geoffrey PREUD'HOMME   Workflow initial
12
13
      return 0;
  }