aboutsummaryrefslogtreecommitdiff
path: root/SetNeighborTileBehavior.h
blob: 53bfbc0713a730f66598198e0380a805075170bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once

#include "TileBehavior.h"

class SetNeighborTileBehavior : public TileBehavior {
	friend class TileBehaviorFactory;
	using TileBehavior::TileBehavior;

public:
	virtual void step(Artist *);
	virtual void update(Tile &);

	static constexpr const char * type = "B";

private:
	int dx = 0;
	int dy = 0;
};