mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 15:53:37 +00:00
7 lines
135 B
C++
7 lines
135 B
C++
#pragma once
|
|
class BufferedImage;
|
|
|
|
class HttpTextureProcessor {
|
|
public:
|
|
virtual BufferedImage* process(BufferedImage* read) = 0;
|
|
}; |