Files
BloomPatched/src/Targets/TargetState.hpp

16 lines
219 B
C++
Raw Normal View History

2021-04-04 21:04:12 +01:00
#pragma once
#include <QMetaType>
namespace Bloom::Targets
{
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(Bloom::Targets::TargetState)