Files
itgmania212121/stepmania/src/Quad.h
T

27 lines
462 B
C++
Raw Normal View History

#ifndef QUAD_H
#define QUAD_H
2002-05-20 08:59:37 +00:00
/*
-----------------------------------------------------------------------------
Class: Quad
Desc: A rectangle shaped actor with color.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
Chris Danford
-----------------------------------------------------------------------------
*/
#include "Sprite.h"
2002-05-20 08:59:37 +00:00
class Quad : public Sprite
2002-05-20 08:59:37 +00:00
{
public:
Quad()
{
m_bDrawIfTextureNull = true;
}
2002-05-20 08:59:37 +00:00
};
#endif