mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
14 lines
162 B
C++
14 lines
162 B
C++
#pragma once
|
|
|
|
#include "Common.h"
|
|
#include "ImageData.h"
|
|
|
|
NS_BF_BEGIN;
|
|
|
|
class BFIData : ImageData
|
|
{
|
|
public:
|
|
void Compress(ImageData* source);
|
|
};
|
|
|
|
NS_BF_END;
|