1#ifndef YAZE_CLI_HANDLERS_GAME_DUNGEON_STREAM_PLAN_COMMANDS_H_
2#define YAZE_CLI_HANDLERS_GAME_DUNGEON_STREAM_PLAN_COMMANDS_H_
6#include "absl/status/status.h"
17 std::string
GetName()
const override {
return "dungeon-stream-plan"; }
19 return "dungeon-stream-plan --kind <objects|sprites|pot_items> "
20 "--manifest <path> [--format <json|text>]";
The Rom class is used to load, save, and modify Rom data. This is a generic SNES ROM container and do...
std::string GetName() const override
Get the command name.
absl::Status ValidateArgs(const resources::ArgumentParser &parser) override
Validate command arguments.
absl::Status Execute(Rom *rom, const resources::ArgumentParser &parser, resources::OutputFormatter &formatter) override
Execute the command business logic.
std::string GetUsage() const override
Get the command usage string.
Utility for parsing common CLI argument patterns.
Base class for CLI command handlers.