blob: c3ab987d70204806a56d9b86ae98aa277aebf234 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <cstdint>
#include <Resource.h>
namespace SF64 {
class Hitbox : public Ship::Resource<float> {
public:
using Resource::Resource;
float* GetPointer() override;
size_t GetPointerSize() override;
std::vector<float> mHitbox;
};
}
|