mirror of
https://github.com/ApfelTeeSaft/PlanetFleet.git
synced 2026-08-26 19:33:38 +00:00
16 lines
241 B
C++
16 lines
241 B
C++
#ifndef ICE_SHEET_H
|
|
#define ICE_SHEET_H
|
|
|
|
#include "structure.h"
|
|
|
|
namespace battleship{
|
|
class IceSheet : public Structure{
|
|
public:
|
|
IceSheet(Player*, int, vb01::Vector3, vb01::Quaternion, int);
|
|
void update();
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|