Files

18 lines
413 B
C++
Raw Permalink Normal View History

2026-08-07 13:10:07 -05:00
#pragma once
#include <iomanip>
2026-09-01 16:27:01 -05:00
#include <iostream>
2026-08-07 13:10:07 -05:00
#include "object.h"
2026-09-01 16:27:01 -05:00
class Scenery : public Object {
public:
Scenery();
Scenery(int i, std::string n, std::string desc, std::vector<std::string> k, ObjectType t, bool cT, int rID);
void Examine();
void Interact() override;
friend void from_json(const nlohmann::json &j, Scenery &s);
friend void to_json(json &j, const Scenery &s);
2026-08-07 13:10:07 -05:00
};