Voxellancer  0.3
A game about voxels in space
 All Classes Functions Pages
genericship.h
1 #pragma once
2 
3 #include <string>
4 
5 #include "ship.h"
6 #include "genericworldobject.h"
7 
8 
9 class GenericShip: public Ship {
10 public:
11  GenericShip();
12 };
13 
Definition: genericship.h:9
Definition: ship.h:23