mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 00:48:09 +01:00
22 lines
251 B
C++
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;
|
|
}
|
|
};
|
|
|
|
}
|