Added tangible_make to world

This commit is contained in:
2021-01-17 16:23:10 -05:00
parent 313e78067a
commit 1f898afdd4
5 changed files with 94 additions and 9 deletions

View File

@@ -76,7 +76,7 @@ private:
int size_limit_;
std::deque<AnimStep> steps_;
public:
AnimQueue(int size_limit);
AnimQueue();
const AnimStep &nth(int n) const { return steps_[n]; }
int size() const { return steps_.size(); }
@@ -90,6 +90,9 @@ public:
// Get the final resting place.
const std::string &get_plane() const;
const util::XYZ &get_xyz() const;
// Functions for unit testing.
void set_size_limit(int n);
};
#endif // ANIMQUEUE_HPP