GigaPasjans
Loading...
Searching...
No Matches
IActionProvider.h
1// Plik utworzony przez Piotra ChudziƄskiego w dniu 11.04.2025
2#pragma once
3#include "ActionRegistry.h"
4
5namespace Andromenda
6{
12 {
13 public:
14 virtual ~IActionProvider() = default;
15
20 virtual void ProvideActions(ActionRegistry &registry) = 0;
21 };
22} // namespace Andromenda
Represent registry of Action objects.
Definition ActionRegistry.h:74
Represents an object that can provide actions.
Definition IActionProvider.h:12
virtual void ProvideActions(ActionRegistry &registry)=0
Provides own actions to the ActionRegistry.