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