Program Listing for File Component.hpp

Return to documentation for file (include/ari/en/Component.hpp)

#pragma once
#include "Node.hpp"

namespace ari
{
    class ARI_API Component: public Node
    {
    public:

        Component();

        virtual ~Component() = default;

        bool _isFromNode3D;
        bool _isFromGui;

    }; // Component

} // ari