Skip to content

Instantly share code, notes, and snippets.

View tomluyten's full-sized avatar
🎯
Focusing

Tom Luyten tomluyten

🎯
Focusing
View GitHub Profile
//Object oriented timer by Daniel Shiffman (learningprocessing.org)
class Timer {
int savedTime; // When Timer started
int totalTime; // How long Timer should last
int passedTime;
Timer(int tempTotalTime) {
totalTime = tempTotalTime;