Stand/Stand/CommandMarkedPlayers.hpp
2024-10-16 11:20:42 +08:00

16 lines
306 B
C++

#pragma once
#include "CommandListHistoricPlayers.hpp"
namespace Stand
{
class CommandMarkedPlayers : public CommandListHistoricPlayers
{
public:
explicit CommandMarkedPlayers(CommandList* parent);
protected:
[[nodiscard]] std::vector<CommandHistoricPlayer*> collectPlayers() const final;
};
}