CHIP8Emulator/Block.h

14 lines
245 B
C
Raw Normal View History

2023-01-04 01:00:40 -06:00
#pragma once
#include <tuple>
class Block
{
public:
Block(){};
Block(int x, int y, int R, int B, int G);
void display(float CameraX, float CameraY, float Zoom);
private:
int X;
int Y;
std::tuple<int, int, int> color;
};