[Utils] Rename interval update method
This commit is contained in:
@ -4,7 +4,7 @@ namespace Utils
|
||||
{
|
||||
namespace Time
|
||||
{
|
||||
void Interval::Set()
|
||||
void Interval::Update()
|
||||
{
|
||||
this->LastPoint = std::chrono::high_resolution_clock::now();
|
||||
}
|
||||
|
@ -10,7 +10,7 @@ namespace Utils
|
||||
public:
|
||||
Interval() : LastPoint(std::chrono::high_resolution_clock::now()) {}
|
||||
|
||||
void Set();
|
||||
void Update();
|
||||
bool Elapsed(std::chrono::nanoseconds nsecs);
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user