DarkflameServer/dGame/dBehaviors/EmptyBehavior.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
175 B
C
Raw Normal View History

#pragma once
#include "Behavior.h"
class EmptyBehavior final : public Behavior
{
public:
explicit EmptyBehavior(const uint32_t behavior_id) : Behavior(behavior_id) {
}
};