/*
** j###t ########## #### ####
** j###t ########## #### ####
** j###T "###L J###"
** ######P' ########## #########
** ######k, ########## T######T
** ####~###L ####
** #### q###L ########## .#####
** #### \###L ########## #####"
**
** $Id$
**
** Class History
**
** Date Name Description
** ---------|------------|-----------------------------------------------
** 19Aug98 subtle start of recorded history
**
*/
package key;
import java.io.IOException;
import java.io.DataOutput;
import java.io.DataInput;
/**
* This is a subclass of thread that
* adds functionality to work out what,
* exactly, is running at the moment.
*/
public class Animated extends Thread
{
Animate use;
public Animated( Animate using )
{
super( using );
use = using;
}
public Animate is()
{
return( use );
}
}