blob: 856760f3ade968012e3af1fde49b36396e5220e2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "TileBehavior.h"
class StepTileBehavior : public TileBehavior {
friend class TileBehaviorFactory;
using TileBehavior::TileBehavior;
public:
virtual void update(Tile &);
static constexpr const char * type = "G";
};
|