mirror of
https://git.neolegacy.dev/Elysium/Project-Elysium.git
synced 2026-07-17 08:50:44 +00:00
8 lines
138 B
C++
8 lines
138 B
C++
#pragma once
|
|
class BufferedImage;
|
|
|
|
class MemTextureProcessor
|
|
{
|
|
public:
|
|
virtual BufferedImage *process(BufferedImage *read) = 0;
|
|
}; |