moving player up with the lua script

This commit is contained in:
Bluub
2021-06-07 10:55:22 +02:00
parent 39f417358d
commit 2c3fbee797
5 changed files with 68 additions and 0 deletions
@@ -0,0 +1,27 @@
//
// Created by Louis Auzuret on 06/07/21
//
#pragma once
#include "System/System.hpp"
namespace BBM
{
//! @brief A system to handle keyboard entities.
class IAControllableSystem : public WAL::System
{
public:
//! @inherit
void onFixedUpdate(WAL::Entity &entity) override;
//! @brief A default constructor
IAControllableSystem();
//! @brief A keyboard system is copy constructable
IAControllableSystem(const IAControllableSystem &) = default;
//! @brief A default destructor
~IAControllableSystem() override = default;
//! @brief A keyboard system is assignable.
IAControllableSystem &operator=(const IAControllableSystem &) = default;
};
}