summaryrefslogtreecommitdiff
path: root/SDL_Android/LivioSdlUtilities/src/com/livio/sdl/utils/UpCounter.java
diff options
context:
space:
mode:
Diffstat (limited to 'SDL_Android/LivioSdlUtilities/src/com/livio/sdl/utils/UpCounter.java')
-rw-r--r--SDL_Android/LivioSdlUtilities/src/com/livio/sdl/utils/UpCounter.java26
1 files changed, 0 insertions, 26 deletions
diff --git a/SDL_Android/LivioSdlUtilities/src/com/livio/sdl/utils/UpCounter.java b/SDL_Android/LivioSdlUtilities/src/com/livio/sdl/utils/UpCounter.java
deleted file mode 100644
index e1b72e026..000000000
--- a/SDL_Android/LivioSdlUtilities/src/com/livio/sdl/utils/UpCounter.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.livio.sdl.utils;
-
-/**
- * Represents a simple up-counter. The up-counter can be initialized with
- * a seed value to start counting from. If initialized with no seed, the counter
- * will start from 0.
- *
- * @author Mike Burke
- *
- */
-public class UpCounter extends Counter{
-
- public UpCounter(){
- super();
- }
-
- public UpCounter(int start){
- super(start);
- }
-
- @Override
- public int next(){
- return current++;
- }
-
-}