From a408a43cd105b89a8d44292e2ef69802a5660497 Mon Sep 17 00:00:00 2001 From: Stephen Enders Date: Sat, 23 Jan 2021 11:52:32 -0500 Subject: Move source files to src folder We'll be making a few source files it'll be useful to have them organized at least somewhat from our non-src files --- timedLatch.cpp | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 timedLatch.cpp (limited to 'timedLatch.cpp') diff --git a/timedLatch.cpp b/timedLatch.cpp deleted file mode 100644 index 66714a5..0000000 --- a/timedLatch.cpp +++ /dev/null @@ -1,38 +0,0 @@ -#include "timedLatch.hpp" - -namespace ur { - -TimedLatch::TimedLatch(sf::Time duration) -{ - this->duration = duration; - this->clock = sf::Clock(); - this->isStarted = false; -}; - -void -TimedLatch::start() -{ - this->clock.restart(); - this->isStarted = true; -}; - -bool -TimedLatch::is_running() -{ - return this->isStarted && this->clock.getElapsedTime() < duration; -}; - -bool -TimedLatch::is_completed() -{ - - return this->isStarted && this->clock.getElapsedTime() >= duration; -}; - -void -TimedLatch::reset() -{ - this->isStarted = false; -}; - -} -- cgit v1.2.3-54-g00ecf