mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 20:56:34 +03:00
14 lines
306 B
C++
14 lines
306 B
C++
#include "Pch.h"
|
|
#include "../Detail.h"
|
|
#include "DrawComponent.h"
|
|
|
|
using namespace Flower;
|
|
using namespace Flower::UI;
|
|
|
|
void ComponentDrawer::drawReflectionCapture(std::shared_ptr<SceneNode> node)
|
|
{
|
|
std::shared_ptr<ReflectionCaptureComponent> comp = node->getComponent<ReflectionCaptureComponent>();
|
|
|
|
|
|
|
|
} |