mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-04-02 18:25:30 +02:00
Add component tag for layouts (for custom or basic backgrounds).
This commit is contained in:
18
Source/Graphics/Component/Container.h
Normal file
18
Source/Graphics/Component/Container.h
Normal file
@@ -0,0 +1,18 @@
|
||||
/* This file is subject to the terms and conditions defined in
|
||||
* file 'LICENSE.txt', which is part of this source code package.
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include "Component.h"
|
||||
#include <SDL2/SDL.h>
|
||||
#include <string>
|
||||
|
||||
class Container : public Component
|
||||
{
|
||||
public:
|
||||
Container();
|
||||
virtual ~Container();
|
||||
void FreeGraphicsMemory();
|
||||
void AllocateGraphicsMemory();
|
||||
void Draw();
|
||||
};
|
||||
Reference in New Issue
Block a user