M2-PT-DRP/source/behavior/tasks/undefined/UndefinedTask.hpp
study-faraphel a7c1bba666 reorganised some parts of the code
Utils moved to subdirectories
Task activation have been moved to static member of the Task class, instead of being manually activated.
2024-11-26 21:57:37 +01:00

18 lines
232 B
C++

#pragma once
#include <map>
#include "../base/BaseTask.hpp"
namespace drp::task {
class UndefinedTask final : public BaseTask {
public:
static void use(Context& context);
void handle(Context& context) override;
};
}