mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-30 10:06:35 +03:00
Fixed shaders reload ( after context lost ). Fixed some compiler warnings on gcc (mingw32). Added Windows Code::Blocks Project file.
25 lines
483 B
C++
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;
|
|
}
|
|
|
|
}}
|