2020-09-13 23:37:55 +01:00
|
|
|
#pragma once
|
2018-09-23 00:47:28 +01:00
|
|
|
#ifndef BLOCK_H
|
|
|
|
#define BLOCK_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
class Block
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Block();
|
|
|
|
Block(uint16_t);
|
2021-11-24 04:53:41 +00:00
|
|
|
Block(uint16_t metatileId, uint16_t collision, uint16_t elevation);
|
2021-02-14 17:37:51 +00:00
|
|
|
Block(const Block &);
|
|
|
|
Block &operator=(const Block &);
|
2021-02-14 20:10:03 +00:00
|
|
|
bool operator ==(Block) const;
|
|
|
|
bool operator !=(Block) const;
|
2021-11-24 04:53:41 +00:00
|
|
|
uint16_t metatileId:10;
|
2018-09-23 00:47:28 +01:00
|
|
|
uint16_t collision:2;
|
|
|
|
uint16_t elevation:4;
|
2021-02-14 20:10:03 +00:00
|
|
|
uint16_t rawValue() const;
|
2018-09-23 00:47:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BLOCK_H
|