Botcraft 1.21.4
Loading...
Searching...
No Matches
SimpleBehaviourClient.hpp
Go to the documentation of this file.
1#pragma once
2
4
5namespace Botcraft
6{
7 /// @brief A client you can use if you only want to use behaviour trees and don't
8 /// need to add any custom Handle functions. In case you need to react to packets,
9 /// just inherit either this class, or BaseBehaviourClient the same way it's done here.
10 class SimpleBehaviourClient : public TemplatedBehaviourClient<SimpleBehaviourClient>
11 {
12 public:
13 SimpleBehaviourClient(const bool use_renderer_);
14
15 virtual ~SimpleBehaviourClient();
16 };
17} // namespace Botcraft
A client you can use if you only want to use behaviour trees and don't need to add any custom Handle ...
The base class you should inherit if you need to implement some custom Handle functions AND need to a...