package com.touchspin.td; public class MoverNull extends Mover { /* ====================================================================================== * File: MoverNull.java * Authors: Brian Adams - b.adams5736@edmail.edcc.edu * Russell Brendel - russell.brendel.2925@edmail.edcc.edu * Damian Forrester - dforrester777@gmail.com * Wendi Tang - w.tang2404@myedmail.edcc.edu * * Organization: Edmonds Community College * Term: Spring 2014 * Class: CS 185 - Game Project Developement * Instructor: Tim Hunt - thunt@edcc.edu * * Project: Ollie * -------------------------------------------------------------------------------------- * * This class is a null mover which does nothing. This mover is assigned to all static * objects * ====================================================================================== */ @Override public void move(GameThing gameThing) { // TODO Auto-generated method stub } }