Files
BloomPatched/src/Targets/TargetState.hpp

16 lines
205 B
C++
Raw Normal View History

2021-04-04 21:04:12 +01:00
#pragma once
#include <QMetaType>
namespace Targets
2021-04-04 21:04:12 +01:00
{
2021-09-21 21:12:53 +01:00
enum class TargetState: std::uint8_t
2021-04-04 21:04:12 +01:00
{
UNKNOWN,
STOPPED,
RUNNING,
};
}
Q_DECLARE_METATYPE(Targets::TargetState)