// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once #include "MeshHost.hpp" #include "display/mesh/QuadMesh.hpp" namespace Dawn { class QuadMeshHost : public MeshHost { public: // @optional StateProperty xy0; // @optional StateProperty xy1; // @optional StateProperty uv0; // @optional StateProperty uv1; QuadMeshHost(std::weak_ptr item); void onStart() override; }; }