Skip to content

Instantly share code, notes, and snippets.

View dumptruckman's full-sized avatar
💭
I may be slow to respond.

Jeremy Wood dumptruckman

💭
I may be slow to respond.
View GitHub Profile
/***************************************************************************
// Programmer: Jonathan Wheeler CSC110 Programming Assignment 5
// Date: May 8, 2017
// Description:
// Input:
// Output:
****************************************************************************/
import java.io.*;
import java.util.*;
public class PlayerDamageHistory {
public static PlayerDamageHistory createDamageHistory(String attacker) {
return new PlayerDamageHistory(attacker);
}
private final String attacker;
private final long time;
private PlayerDamageHistory(String attacker) {