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

26 lines
454 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 windWest;
int8_t windVertical;
int8_t windSouth;
uint8_t windSpeed;
} WindSettings;
class SetWindSettings : public SceneCommand {
public:
void* GetPointer();
size_t GetPointerSize();
WindSettings settings;
};
}; // namespace Ship