Скачиваний:
6
Добавлен:
01.05.2014
Размер:
266 б
Скачать
#pragma once
#include "gl/gl.h"

class Square {
private:
	typedef struct{
		float x, y, z;
	}Point;

	Point				mPoints[4];
	unsigned int		mColor;
public:
	Square(float x0, float y0, float a, unsigned int color = 6656);
	~Square();

	void draw();
};
Соседние файлы в папке testMFC