Skip to content
Snippets Groups Projects
package-info.java 1000 B
/**
 * Assignment3 for the NPS MOVES MV3500 Networked Graphics course.
 * 
 * @see <a href="https://gitlab.nps.edu/Savage/NetworkedGraphicsMV3500/-/tree/master/assignments">networkedGraphicsMV3500 assignments</a>
 * @see java.lang.Package
 * @see <a href="https://stackoverflow.com/questions/22095487/why-is-package-info-java-useful">StackOverflow: why-is-package-info-java-useful</a>
 * @see <a href="https://stackoverflow.com/questions/624422/how-do-i-document-packages-in-java">StackOverflow: how-do-i-document-packages-in-java</a>
 *
 * Sets coordinates for Entity 1 and Entity 2.  When simulations starts, Entity 1 advances towards Entity 2 and 
 * fires munitions when in range.  Prints Entity 1 location and firing info (on occurance) to console after each step of the simulation.
 * 
 * Adjusted time between loops to three seconds to allow for ease of reading.
 * 
 * Adjusted total number of loops to 4 to shorten simulation time.
 *
 */

package MV3500Cohort2023MarchJune.homework3.Islas;