2021-06-27 15:51:34 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "engine_ptr.h"
|
2021-10-13 21:47:26 -07:00
|
|
|
#include "ac_control_generated.h"
|
2021-06-27 15:51:34 -07:00
|
|
|
|
2021-10-13 21:47:26 -07:00
|
|
|
class AcState final : public ac_control_s {
|
|
|
|
public:
|
|
|
|
// Returns true if AC is currently active
|
|
|
|
bool updateAc(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool getAcState(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
|
|
|
};
|