2022-08-06 03:01:59 +00:00
|
|
|
#pragma once
|
2021-12-05 17:54:36 +00:00
|
|
|
|
|
|
|
#include "Behavior.h"
|
|
|
|
|
|
|
|
class EmptyBehavior final : public Behavior
|
|
|
|
{
|
|
|
|
public:
|
2022-07-28 13:39:57 +00:00
|
|
|
explicit EmptyBehavior(const uint32_t behavior_id) : Behavior(behavior_id) {
|
2021-12-05 17:54:36 +00:00
|
|
|
}
|
|
|
|
};
|