godot/drivers/pvr/Interval.h
2015-04-06 21:48:20 -03:00

22 lines
251 B
C++

#pragma once
namespace Javelin {
template<typename T>
class Interval {
public:
T min;
T max;
Interval() {
}
Interval<T> &operator|=(const T &x) {
min.SetMin(x);
max.SetMax(x);
return *this;
}
};
}