mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
15 lines
210 B
C++
15 lines
210 B
C++
#ifndef STRUCTURE_H
|
|
#define STRUCTURE_H
|
|
|
|
#include "unit.h"
|
|
|
|
namespace battleship{
|
|
class Structure : public Unit{
|
|
public:
|
|
Structure(Player*, int, vb01::Vector3, vb01::Quaternion);
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|