blob: fec43126c44214eba3dcbbbd9e9d2f78abca4bbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "Cutscene.h"
#include <libultraship/libultra/gbi.h>
namespace SOH {
uint32_t* Cutscene::GetPointer() {
return commands.data();
}
size_t Cutscene::GetPointerSize() {
return commands.size() * sizeof(uint32_t);
}
} // namespace SOH
|