mirror of
https://gitlab.com/ogelpre/pingxelflut.git
synced 2025-02-22 23:24:09 +01:00
11 lines
179 B
C++
11 lines
179 B
C++
#include "types.hpp"
|
|
|
|
#pragma once
|
|
|
|
namespace screen{
|
|
class screen_iface {
|
|
public:
|
|
virtual ~screen_iface() {};
|
|
virtual void consume_pixel(const types::pixel &input) = 0;
|
|
};
|
|
}
|