DarkflameServer/dGame/dBehaviors/EmptyBehavior.h

11 lines
175 B
C
Raw Normal View History

2022-08-06 03:01:59 +00:00
#pragma once
#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) {
}
};