mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-24 06:27:24 +00:00
12 lines
246 B
C++
12 lines
246 B
C++
#pragma once
|
|
#include "CppScripts.h"
|
|
|
|
class FrictionVolume : public CppScripts::Script
|
|
{
|
|
public:
|
|
void OnStartup(Entity* self) override;
|
|
private:
|
|
const float m_DefaultFriction = 1.5;
|
|
const std::u16string m_FrictionVariable = u"FrictionAmt";
|
|
};
|