[Utils] Rename interval update method

This commit is contained in:
momo5502
2016-11-13 12:10:51 +01:00
parent 091c604675
commit 9d3af2cd69
3 changed files with 5 additions and 5 deletions

View File

@ -4,7 +4,7 @@ namespace Utils
{
namespace Time
{
void Interval::Set()
void Interval::Update()
{
this->LastPoint = std::chrono::high_resolution_clock::now();
}

View File

@ -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);
};
}