Files
eepp/src/ui/cuiborder.cpp
spartanj 4c07441c77 Fixed compilation on windows.
Fixed shaders reload ( after context lost ).
Fixed some compiler warnings on gcc (mingw32).
Added Windows Code::Blocks Project file.
2010-07-27 03:44:40 -03:00

25 lines
483 B
C++

#include "cuiborder.hpp"
namespace EE { namespace UI {
cUIBorder::cUIBorder() : mColor( 0xFF404040 ), mWidth( 1 ) {}
cUIBorder::cUIBorder( const cUIBorder& border ) : mColor( border.Color() ), mWidth( border.Width() ) {}
const eeColorA& cUIBorder::Color() const {
return mColor;
}
void cUIBorder::Color( const eeColorA& Col ) {
mColor = Col;
}
const eeUint& cUIBorder::Width() const {
return mWidth;
}
void cUIBorder::Width( const eeUint& width ) {
mWidth = width;
}
}}