mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-14 20:28:21 +00:00
9655f0ee45
fix compile issues
14 lines
283 B
C++
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
|