24 lines
342 B
C++
24 lines
342 B
C++
|
|
#pragma once
|
|
|
|
#include "../rod.hpp"
|
|
|
|
namespace sim::reactor::coolant
|
|
{
|
|
|
|
class pipe : public sim::reactor::rod
|
|
{
|
|
virtual double get_k(sim::reactor::rod::val_t type) const;
|
|
|
|
virtual const char* get_name() const { return "Coolant"; }
|
|
|
|
public:
|
|
|
|
virtual bool should_display() const { return true; }
|
|
|
|
virtual void update(double secs);
|
|
};
|
|
|
|
}
|
|
|