Skip to content
Snippets Groups Projects
Commit e1540b7d authored by tjsus's avatar tjsus
Browse files

Assignment 3 Fixed JavaDoc.

parent 3f51e275
No related branches found
No related tags found
No related merge requests found
...@@ -32,11 +32,29 @@ public class ExampleSimulationProgram { ...@@ -32,11 +32,29 @@ public class ExampleSimulationProgram {
// DIS utilities // DIS utilities
private String descriptor = this.getClass().getSimpleName(); private String descriptor = this.getClass().getSimpleName();
/**
* DIS Channel to output to
*/
protected DisChannel disChannel; protected DisChannel disChannel;
protected PduFactory pduFactory; /**
protected CommentPdu gridStatusPdu; * PDU generator
protected FirePdu firePduPlayer1; */
protected FirePdu firePduPlayer2; protected PduFactory pduFactory; //
/**
* Grid Status updating PDU
*/
protected CommentPdu gridStatusPdu; //
/**
* Player 1 PDU
*/
protected FirePdu firePduPlayer1; //
/**
* Player 2 PDU
*/
protected FirePdu firePduPlayer2; //
/**
* Munition Descriptor
*/
protected MunitionDescriptor munitionDescriptor1 = new MunitionDescriptor(); protected MunitionDescriptor munitionDescriptor1 = new MunitionDescriptor();
// Simulation time settings // Simulation time settings
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment