Files
test2/source/blender/draw/engines/select/select_instance.cc
Hans Goudey a68d39e9d9 Cleanup: Formatting
Run `make format` after the library update in the previous commit.
2025-10-02 12:55:42 -04:00

29 lines
521 B
C++

/* SPDX-FileCopyrightText: 2023 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup select
*/
#include "DRW_render.hh"
#include "select_engine.hh"
#include "../overlay/overlay_instance.hh"
#include "select_instance.hh"
namespace blender::draw::select {
class Instance : public overlay::Instance {
public:
Instance() : overlay::Instance(SelectionType::ENABLED) {};
};
DrawEngine *Engine::create_instance()
{
return new Instance();
}
} // namespace blender::draw::select