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
| 0 |
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
| function sln { | |
| Get-ChildItem *.sln | Select-Object -ExpandProperty Name | Invoke-Item | |
| } |
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 System.Collections; | |
| using System.Collections.Generic; | |
| public class MaterialToSoundMapper : MonoBehaviour | |
| { | |
| public MAudio[] MaterialFootsteps; | |
| } |
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; | |
| namespace ConsoleAnimations | |
| { | |
| class MainClass | |
| { | |
| public static void Main(string[] args) | |
| { | |
| Animations spin = new Animations(); | |
| string loadingText = "Loading...."; |