blob: cc690c51dbbefc2f00e39d1376a250dc52c5d8f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include "foliage.h"
#include "game/worldobject.h"
class Location;
class Plant : public WorldObject {
std::shared_ptr<const Foliage> type;
InstanceVertices<Foliage::InstanceVertex>::InstanceProxy instance;
void
tick(TickDuration) override
{
}
public:
Plant(std::shared_ptr<const Foliage> type, const Location & position);
};
|