GolfAnOctave/Block.h
2022-11-22 14:50:34 -06:00

14 lines
245 B
C++

#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;
};