mirror of
https://github.com/huderlem/porymap.git
synced 2026-03-22 01:54:46 -05:00
17 lines
226 B
C++
17 lines
226 B
C++
#pragma once
|
|
#ifndef BLOCKDATA_H
|
|
#define BLOCKDATA_H
|
|
|
|
#include "block.h"
|
|
|
|
#include <QByteArray>
|
|
#include <QVector>
|
|
|
|
class Blockdata : public QVector<Block>
|
|
{
|
|
public:
|
|
QByteArray serialize() const;
|
|
};
|
|
|
|
#endif // BLOCKDATA_H
|