This repository has been archived on 2024-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
HomdEngine/src/graphics/graphics.h

19 lines
309 B
C++

/**
* Copyright (c) 2023, Furkan Mudanyali <fmudanyali@icloud.com>
* All rights reserved
*/
#ifndef _HOMD_GRAPHICS
#define _HOMD_GRAPHICS
class Game;
class Graphics {
public:
Game* game;
Graphics() = default;
virtual ~Graphics() = default;
virtual void drawSomething() = 0;
};
#endif