mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 13:36:14 +03:00
12 lines
183 B
C++
12 lines
183 B
C++
#include "Pch.h"
|
|
#include "Component.h"
|
|
#include "SceneNode.h"
|
|
#include "Scene.h"
|
|
|
|
namespace Flower
|
|
{
|
|
void Component::markDirty()
|
|
{
|
|
m_node.lock()->getScene()->setDirty(true);
|
|
}
|
|
} |