DarkflameServer/dScripts/02_server/Map/General/FrictionVolumeServer.h
David Markowitz 9655f0ee45 make include guards standards conforming
fix compile issues
2024-10-30 00:34:25 -07:00

14 lines
283 B
C++

#ifndef FRICTIONVOLUMESERVER_H
#define FRICTIONVOLUMESERVER_H
#include "CppScripts.h"
class FrictionVolumeServer : public CppScripts::Script {
public:
void OnStartup(Entity* self) override;
private:
const float DefaultFrictionAmount = 1.5f;
};
#endif //!FRICTIONVOLUMESERVER_H