Shipwright/soh/soh/resource/type/scenecommand/SetEchoSettings.h

25 lines
425 B
C++

#pragma once
#include <cstdint>
#include <vector>
#include <memory>
#include "Resource.h"
#include "SceneCommand.h"
#include <libultraship/libultra/types.h>
namespace Ship {
typedef struct {
int8_t echo;
} EchoSettings;
class SetEchoSettings : public SceneCommand {
public:
using SceneCommand::SceneCommand;
void* GetPointer();
size_t GetPointerSize();
EchoSettings settings;
};
}; // namespace Ship