mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-12-23 00:29:47 +00:00
76c03bb4d4
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
15 lines
275 B
C++
15 lines
275 B
C++
#pragma once
|
|
|
|
#include <string_view>
|
|
|
|
#include "simdjson/simdjson.h"
|
|
|
|
#include "byte_t.h"
|
|
|
|
class cycle_t final : public byte_t {
|
|
public:
|
|
cycle_t(simdjson::dom::array input) noexcept;
|
|
|
|
[[nodiscard]] std::string_view action() const noexcept { return at(2).get_string(); }
|
|
};
|