mirror of
https://github.com/Squareville/TestEventServer.git
synced 2026-04-22 02:38:24 -05:00
0545adfac3
Have fun!
12 lines
179 B
C++
12 lines
179 B
C++
#pragma once
|
|
|
|
#include "Behavior.h"
|
|
|
|
class EmptyBehavior final : public Behavior
|
|
{
|
|
public:
|
|
explicit EmptyBehavior(const uint32_t behavior_id) : Behavior(behavior_id)
|
|
{
|
|
}
|
|
};
|