Files
eepp/include/eepp/scene.hpp
Martín Lucas Golini 6ef328ef31 Added Scene Actions: Enable, Disable, Visible.
Removed all the start[ActionName] functions in UINode in favor of using runAction.

--HG--
branch : dev-stateful-drawable
2018-12-20 13:10:29 -03:00

16 lines
418 B
C++

#ifndef EEPP_SCENE_HPP
#define EEPP_SCENE_HPP
#include <eepp/scene/actions/actions.hpp>
#include <eepp/scene/action.hpp>
#include <eepp/scene/actionmanager.hpp>
#include <eepp/scene/event.hpp>
#include <eepp/scene/keyevent.hpp>
#include <eepp/scene/mouseevent.hpp>
#include <eepp/scene/nodemessage.hpp>
#include <eepp/scene/node.hpp>
#include <eepp/scene/scenenode.hpp>
#include <eepp/scene/scenemanager.hpp>
#endif