mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-08-09 22:32:46 +00:00
12 lines
184 B
C++
12 lines
184 B
C++
#pragma once
|
|
|
|
#include "Layer.h"
|
|
|
|
class FlatLayer : public Layer {
|
|
private:
|
|
int val;
|
|
|
|
public:
|
|
FlatLayer(int val);
|
|
std::vector<int> getArea(int xo, int yo, int w, int h);
|
|
}; |