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 com.jameskidd; | |
| /** | |
| * An automated driver class for the farm game.<p> | |
| * | |
| * @version 1.0 | |
| * @author James Kidd | |
| */ | |
| import java.io.Console; | |
| import com.jameskidd.Controllers.Controller; |
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
| // https://www.dropbox.com/s/ya77lpafdjvp8pq/week2-uml2.PNG?dl=0 | |
| // My final UML which didnt quite match up with the actual implementation. | |
| import java.io.IOException; | |
| import java.sql.Time; | |
| import java.util.ArrayList; | |
| import java.util.Date; | |
| import java.util.Random; | |
| import java.util.Scanner; | |
| import java.util.Timer; |
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
| /* | |
| Shared implementation, use in place of NavigationPage | |
| */ | |
| using Xamarin.Forms; | |
| namespace LakesEntrance | |
| { | |
| public class NoAnimationNavigationPage : NavigationPage | |
| { | |
| public NoAnimationNavigationPage(Page startupPage) :base(startupPage) |
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
| jQuery(document).ready(function($){ | |
| var mathenticate = { | |
| bounds: { | |
| lower: 5, | |
| upper: 50 | |
| }, | |
| first: 0, | |
| second: 0, | |
| generate: function () { | |
| this.first = Math.floor(Math.random() * this.bounds.lower) + 1; |
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
| using Photon; | |
| using System; | |
| using System.Collections.Generic; | |
| using UnityEngine; | |
| public class InteractiveDiceObject : SimpleInteractiveObject | |
| { | |
| private int m_diceValue; | |
| public InteractiveDiceObject() |
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
| /** | |
| * James Kidd | |
| * Student ID: S3316990 | |
| */ | |
| import java.io.PrintStream; | |
| import java.util.Scanner; | |
| public class Stage3 | |
| { |
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
| struct PoEEmpty | |
| { | |
| } | |
| [DataTypeByteOrder = 1] UnsignedNumber PoEU16 | |
| { | |
| Size = 2 | |
| } | |
| [DataTypeByteOrder = 0] UnsignedNumber PoEU16LE |
NewerOlder