mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-16 01:40:46 +08:00
20 lines
457 B
C++
20 lines
457 B
C++
#pragma once
|
|
#include "InfrastProductionTask.h"
|
|
|
|
namespace asst
|
|
{
|
|
class InfrastPowerTask final : public InfrastProductionTask
|
|
{
|
|
public:
|
|
using InfrastProductionTask::InfrastProductionTask;
|
|
virtual ~InfrastPowerTask() = default;
|
|
|
|
const static std::string FacilityName;
|
|
const static int MaxNumOfOpers = 1;
|
|
const static int MaxNumOfFacility = 3;
|
|
|
|
protected:
|
|
virtual bool _run() override;
|
|
};
|
|
}
|