mirror of
https://github.com/Force67/ps4delta.git
synced 2025-04-02 11:01:45 -04:00
16 lines
No EOL
327 B
C++
16 lines
No EOL
327 B
C++
#pragma once
|
|
|
|
// Copyright (C) Force67 2019
|
|
|
|
#include <cstdint>
|
|
#include <vector>
|
|
|
|
namespace gfx {
|
|
class frameBase {
|
|
public:
|
|
virtual ~frameBase() = default;
|
|
virtual void toggleFullscreen() = 0;
|
|
virtual void takeScreenshot(std::vector<uint8_t> &data, uint32_t sizeX,
|
|
uint32_t sizeY) = 0;
|
|
};
|
|
} |