30 lines
382 B
C++
30 lines
382 B
C++
//
|
|
// Created by Adniklastrator on 2015-09-10.
|
|
//
|
|
|
|
#ifndef DAYDREAM_CPAD_H
|
|
#define DAYDREAM_CPAD_H
|
|
|
|
#include "Core/Component.h"
|
|
#include "Core/EKeyDown.h"
|
|
#include "Core/EventBroker.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct Pad : Component
|
|
{
|
|
float SlowdownModifier = 5.f;
|
|
float AccelerationSpeed = 40.f;
|
|
float MaxSpeed = 5.f;
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif //DAYDREAM_CPAD_H
|