SpaceInvaders  1.0
Ebauche d'une réalisation d'un space invader
MyType_ML.h
1 #pragma once
2 
3 #include <vector>
4 
5 namespace nsSpaceInvaderML
6 {
11  typedef std::vector <std::string> CVString;
15  typedef CVString::size_type Size_t;
16 
17 }
Definition: MyConst_ML.h:3
std::vector< std::string > CVString
Alias vers le type de l&#39;écran (l&#39;espace, la matrice).
Definition: MyType_AC.h:23