Added GIFAnimComponent skeleton.

This commit is contained in:
Leon Styhre 2022-02-23 22:04:18 +01:00
parent 32349dc9a6
commit abb48e45e7
3 changed files with 44 additions and 0 deletions

View file

@ -43,6 +43,7 @@ set(CORE_HEADERS
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeEditComponent.h
${CMAKE_CURRENT_SOURCE_DIR}/src/components/FlexboxComponent.h
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GameSelectorComponent.h
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GIFAnimComponent.h
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GridTileComponent.h
${CMAKE_CURRENT_SOURCE_DIR}/src/components/HelpComponent.h
${CMAKE_CURRENT_SOURCE_DIR}/src/components/IList.h
@ -122,6 +123,7 @@ set(CORE_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeComponent.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeEditComponent.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/components/FlexboxComponent.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GIFAnimComponent.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GridTileComponent.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/components/HelpComponent.cpp
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ImageComponent.cpp

View file

@ -0,0 +1,19 @@
// SPDX-License-Identifier: MIT
//
// EmulationStation Desktop Edition
// GIFAnimComponent.cpp
//
// Component to play GIF animations.
//
#include "components/GIFAnimComponent.h"
GIFAnimComponent::GIFAnimComponent()
{
//
}
GIFAnimComponent::~GIFAnimComponent()
{
//
}

View file

@ -0,0 +1,23 @@
// SPDX-License-Identifier: MIT
//
// EmulationStation Desktop Edition
// GIFAnimComponent.h
//
// Component to play GIF animations.
//
#ifndef ES_CORE_COMPONENTS_GIF_ANIM_COMPONENT_H
#define ES_CORE_COMPONENTS_GIF_ANIM_COMPONENT_H
#include "GuiComponent.h"
class GIFAnimComponent : public GuiComponent
{
public:
GIFAnimComponent();
~GIFAnimComponent();
private:
};
#endif // ES_CORE_COMPONENTS_GIF_ANIM_COMPONENT_H