These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.
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
| // note: this interface will be referenced in loaded source code: | |
| public interface ICharacter | |
| { | |
| int Height { get; } | |
| string Language { get; } | |
| } | |
| public class Human : ICharacter | |
| { | |
| public int Height { get { return UnityEngine.Random.Range(150, 200); } } |
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
| // Written by Michael 'Searge' Stoyke in 03/2015 | |
| // Released as public domain, do whatever you want with it! | |
| using System; | |
| using System.IO; | |
| using System.Reflection; | |
| using System.Text; | |
| using Mono.CSharp; | |
| namespace GameLibrary { |