* partially written hero moving

* improvements in include system
This commit is contained in:
mateuszb
2007-08-29 12:18:31 +00:00
parent 2030a6793f
commit 2d7dbbefc3
29 changed files with 104 additions and 45 deletions
+4
View File
@@ -68,4 +68,8 @@ inline std::istream & operator>>(std::istream & str, int3 & dest)
str>>dest.x>>dest.y>>dest.z;
return str;
}
inline std::ostream & operator<<(std::ostream & str, int3 & sth)
{
return str<<sth.x<<' '<<sth.y<<' '<<sth.z;
}
#endif //INT3_H