|
Resource |
|
/*
* JVirus is a PacMan clone, written in Java.
*
* Please read "http://jvirus.sourceforge.net/jvirus_licence.txt" for copyrights.
*
* The sourcecode is designed and created with
* Sun J2SDK 1.3 and Microsoft Visual J++ 6.0
*
* JVirus homepage: http://jvirus.sourceforge.net
*
* autor: Slawa Weis
* email: slawaweis@animatronik.net
*
*/
package org.game.JVirus.res;
/**
* this class has no function. It is only as pointer ro the resources.
* The images and sound files are in the same directory as the Resource class.
* So the call of Resource.class.getResource(String name) get the resource.
*
* @see org.game.JVirus.Images
* @see org.game.JVirus.Sound
* @see org.game.JVirus.Levels
*/
public final class Resource
{
}
|
Resource |
|