Documentatie TeamComparator

This commit is contained in:
Leen Dereu
2018-05-24 12:46:14 +02:00
parent e4c938dbcd
commit 8ab759026f
3 changed files with 18 additions and 0 deletions

View File

@@ -7,6 +7,12 @@ import java.util.concurrent.ThreadLocalRandom;
import static java.lang.Math.cos; import static java.lang.Math.cos;
import static java.lang.Math.sin; import static java.lang.Math.sin;
/**
* A class of Bazookas involving a worm.
*
* @version 1.0
* @author Arthur Bols & Leen Dereu
*/
public class Bazooka extends Projectile { public class Bazooka extends Projectile {
/** /**
* @param worm * @param worm

View File

@@ -2,6 +2,12 @@ package worms.model;
import worms.util.Coordinate; import worms.util.Coordinate;
/**
* A class of Food involving a world and a location.
*
* @version 2.0
* @author Arthur Bols & Leen Dereu
*/
public class Food extends GameObject { public class Food extends GameObject {
/** /**

View File

@@ -5,6 +5,12 @@ import worms.util.Coordinate;
import static java.lang.Math.*; import static java.lang.Math.*;
/**
* A class of GameObjects involving a world, a location and a radius.
*
* @version 3.0
* @author Arthur Bols & Leen Dereu
*/
public abstract class GameObject { public abstract class GameObject {
// region Constructor // region Constructor