vectozavr-shooter/PlayerController.h

29 lines
634 B
C++

//
// Created by Иван Ильин on 19.09.2021.
//
#ifndef SHOOTER_PLAYERCONTROLLER_H
#define SHOOTER_PLAYERCONTROLLER_H
#include "Player.h"
#include "engine/Keyboard.h"
#include "engine/Mouse.h"
class PlayerController final {
private:
std::shared_ptr<Player> _player;
std::shared_ptr<Keyboard> _keyboard;
std::shared_ptr<Mouse> _mouse;
bool _inRunning = false;
bool _isSliding = false;
bool _isInSlowMo = false;
public:
PlayerController(std::shared_ptr<Player> player, std::shared_ptr<Keyboard> keyboard, std::shared_ptr<Mouse> mouse);
void update();
};
#endif //SHOOTER_PLAYERCONTROLLER_H