mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-15 20:58:22 +00:00
14 lines
298 B
C
14 lines
298 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__
|