From e1540b7d12db7e2b6e17c6a1873d857a5ae46a68 Mon Sep 17 00:00:00 2001
From: tjsus <tjsus@172.20.148.229>
Date: Wed, 4 Sep 2024 11:16:53 -0700
Subject: [PATCH] Assignment 3 Fixed JavaDoc.

---
 .../Smith/ExampleSimulationProgram.java       | 26 ++++++++++++++++---
 1 file changed, 22 insertions(+), 4 deletions(-)

diff --git a/assignments/src/MV3500Cohort2024JulySeptember/homework3/Smith/ExampleSimulationProgram.java b/assignments/src/MV3500Cohort2024JulySeptember/homework3/Smith/ExampleSimulationProgram.java
index b6e213c3a5..7f39bed923 100644
--- a/assignments/src/MV3500Cohort2024JulySeptember/homework3/Smith/ExampleSimulationProgram.java
+++ b/assignments/src/MV3500Cohort2024JulySeptember/homework3/Smith/ExampleSimulationProgram.java
@@ -32,11 +32,29 @@ public class ExampleSimulationProgram {
 
     // DIS utilities
     private String descriptor = this.getClass().getSimpleName();
+    /**
+     * DIS Channel to output to
+     */
     protected DisChannel disChannel;
-    protected PduFactory pduFactory;
-    protected CommentPdu gridStatusPdu;
-    protected FirePdu firePduPlayer1;
-    protected FirePdu firePduPlayer2;
+    /**
+     * PDU generator
+     */
+    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();
 
     // Simulation time settings
-- 
GitLab