mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-01-10 06:47:06 +00:00
12 lines
296 B
C++
12 lines
296 B
C++
#ifndef VEHICLEDEATHTRIGGERWATERSERVER_H
|
|
#define VEHICLEDEATHTRIGGERWATERSERVER_H
|
|
|
|
#include "CppScripts.h"
|
|
|
|
class VehicleDeathTriggerWaterServer : public CppScripts::Script {
|
|
public:
|
|
void OnCollisionPhantom(Entity* self, Entity* target) override;
|
|
};
|
|
|
|
#endif //!VEHICLEDEATHTRIGGERWATERSERVER_H
|