blob: 891a3f849f105de4c18208fc9dc9983fd522ede8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
template <typename T>
inline Rect<T>::Rect()
: x(0)
, y(0)
, w(0)
, h(0)
{
}
template <typename T>
inline Rect<T>::Rect(T X, T Y, T W, T H)
: x(X)
, y(Y)
, w(W)
, h(H)
{
}
|