// Room class - will contain the state of the room:
#ifndef VEC_h
#define VEC_h
#include <d3dx9.h>


class Vec
{
private:
	int Arr[];

public:
	Vec();
	~Vec();
	float x,y,z;
	DWORD color;
	double r();
	void drawr();

};

#endif
