mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 21:36:21 +03:00
11 lines
279 B
C++
11 lines
279 B
C++
#include "Pch.h"
|
|
#include "../Detail.h"
|
|
#include "DrawComponent.h"
|
|
|
|
using namespace Flower;
|
|
using namespace Flower::UI;
|
|
|
|
void ComponentDrawer::drawLandscape(std::shared_ptr<SceneNode> node)
|
|
{
|
|
std::shared_ptr<LandscapeComponent> comp = node->getComponent<LandscapeComponent>();
|
|
} |