mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
13 lines
203 B
C++
13 lines
203 B
C++
#ifndef EXPLOSION_H
|
|
#define EXPLOSION_H
|
|
|
|
#include <vector.h>
|
|
|
|
namespace battleship{
|
|
void detonate(vb01::Vector3, vb01::Vector3);
|
|
void detonateDepthCharge();
|
|
void detonateTorpedo();
|
|
}
|
|
|
|
#endif
|