More animation work
[potpourri.git] / include / Global.h
blob3e3c559b9381fdfff39266139eb00219891fdac0
1 // global stuff
3 #ifndef __GLOBAL_H
4 #define __GLOBAL_H
6 #define NIY "not implemented yet"
8 template <class T>
9 struct Pair
11 T x;
12 T y;
15 template <class T>
16 struct Rect
18 Pair<T> xy;
19 Pair<T> size;
22 #endif