DarkflameServer/dGame/dBehaviors/SpawnQuickbuildBehavior.h

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

18 lines
350 B
C
Raw Normal View History

#pragma once
#include "Behavior.h"
class SpawnQuickbuildBehavior final : public Behavior
{
public:
/*
* Inherited
*/
explicit SpawnQuickbuildBehavior(const uint32_t behaviorId) : Behavior(behaviorId) {
}
void Handle(BehaviorContext* context, RakNet::BitStream& bitStream, BehaviorBranchContext branch) override;
void Load() override;
};