#pragma once #include struct Object { Object(std::shared_ptr model); void draw(); bool enable_coords = false; std::shared_ptr model; };