mirror of
https://github.com/huderlem/porymap.git
synced 2026-09-15 04:15:36 -05:00
Implement proof of concept for scripting capabilities
This commit is contained in:
@@ -3,6 +3,12 @@
|
||||
Block::Block() : tile(0), collision(0), elevation(0) {
|
||||
}
|
||||
|
||||
Block::Block(uint16_t tile, uint16_t collision, uint16_t elevation) {
|
||||
this->tile = tile;
|
||||
this->collision = collision;
|
||||
this->elevation = elevation;
|
||||
}
|
||||
|
||||
Block::Block(uint16_t word)
|
||||
{
|
||||
tile = word & 0x3ff;
|
||||
|
||||
Reference in New Issue
Block a user