This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package kebreau; | |
/** | |
* Name: Kei Kebreau | |
* Course: CIS217 | |
* Lab: 3 - Wage Gamer Serializer | |
* Date: April 10, 2019 | |
* Description: The Serializer is used for converting the objects into text | |
* representing the values in the objects and converting the text back to | |
* objects for use in a program. The GamerSerializer will be able to serialized | |
* and deserialize WageGamer objects and OpponentGamer objects. In addition, it |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package kebreau; | |
/** | |
* Name: Kei Kebreau | |
* Course: CIS217 | |
* Lab: 3 - Wage Gamer Serializer | |
* Date: April 10, 2019 | |
* Description: The Serializer is used for converting the objects into text | |
* representing the values in the objects and converting the text back to | |
* objects for use in a program. The GamerSerializer will be able to serialized | |
* and deserialize WageGamer objects and OpponentGamer objects. In addition, it |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package McGriff; | |
import java.util.ArrayList; | |
// Justin | |
// Course CIS217 | |
// Project 2 | |
// 3/5/20 | |
// | |
public class WageGamer{ | |
//private fields |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from procgraphics import * | |
import procgraphics as pg | |
mtn_color = "brown" | |
t_color = "gray" | |
def mountain1(x,y,scale): | |
global mtn_color | |
#Mountain1 | |
#x y will be the bottom left corner |