I hereby claim:
- I am skill3472 on github.
- I am skill3472 (https://keybase.io/skill3472) on keybase.
- I have a public key ASDi-YL8Q8n3J4Ytx7Osex575XSCIWRzd8C3RCaUxF8Ywwo
To claim this, I am signing this object:
public class Program { | |
public static void Main(string[] args) | |
{ | |
int[,] matrix1 = GetRandomMatrixOfSize(8, 8); | |
int[,] matrix2 = GetRandomMatrixOfSize(8, 8); | |
if(args.Length > 0) | |
{ | |
switch(args[0]) | |
{ | |
case "add": |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# A little script fixing LOL anticheat problems. | |
sudo sysctl -w abi.vsyscall32=0 |
using UnityEngine.Audio; | |
using System; | |
using UnityEngine; | |
public class AudioManager : MonoBehaviour | |
{ | |
public static AudioManager instance; | |
public AudioMixerGroup mixerGroup; |
private Quaternion rotation; | |
void Awake() | |
{ | |
rotation = transform.rotation; | |
} | |
void LateUpdate() | |
{ | |
transform.rotation = rotation; | |
} |
GetComponent<PlayerInput>().currentControlScheme |