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
import java.text.DecimalFormat; | |
import java.util.Scanner; | |
public class PayAmmount { | |
public static void main(String[] args) { | |
double payRate, hoursWorked, totalPay; | |
Scanner keyScan = new Scanner(System.in); |
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
import java.text.DecimalFormat; | |
import java.util.Scanner; | |
public class PayAmmount { | |
public static void main(String[] args) { | |
double payRate, hoursWorked, totalPay; | |
Scanner keyScan = new Scanner(System.in); |
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 System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class MummyAI : MonoBehaviour { | |
// Global variables | |
int currentDir = 1; | |
public float speed = 0.00f; | |
public float chaseSpeed = 0.0f; |
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 System; | |
using UnityEngine; | |
using UnityStandardAssets.CrossPlatformInput; | |
namespace UnityStandardAssets.Characters.ThirdPerson | |
{ | |
[RequireComponent(typeof (ThirdPersonCharacter))] | |
public class ThirdPersonUserControl : MonoBehaviour | |
{ | |
private ThirdPersonCharacter m_Character; // A reference to the ThirdPersonCharacter on the object |