mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-02-24 14:51:46 -05:00
23 lines
383 B
C
23 lines
383 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
#include "Resource.h"
|
||
|
#include "Vec2f.h"
|
||
|
#include "Vec3f.h"
|
||
|
#include "Color3b.h"
|
||
|
|
||
|
namespace Ship
|
||
|
{
|
||
|
class DisplayListV0 : public ResourceFile
|
||
|
{
|
||
|
public:
|
||
|
void ParseFileBinary(BinaryReader* reader, Resource* res) override;
|
||
|
};
|
||
|
|
||
|
class DisplayList : public Resource
|
||
|
{
|
||
|
public:
|
||
|
std::vector<uint64_t> instructions;
|
||
|
};
|
||
|
}
|