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
| #!ipxe | |
| # | |
| # This should be startable from ipxe itself with the following commands: | |
| # | |
| # dhcp | |
| # chain http://zorbathut.github.io/ipxe_ubuntu_amd64 | |
| # | |
| # Obviously you'll have to trust that I'm not going to change any URLs out from under you; if you don't trust that, just use this file directly. | |
| # | |
| dhcp |
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
| Class University | |
| void addPerson() { | |
| Student s; | |
| People *p; | |
| *p = &s; | |
| p->createPerson(); | |
| vectorPeople.push_back_(p) | |
| } | |
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
| Shader "Leon/Special/Yamiko" { | |
| Properties { | |
| _Color ("Color", Color) = (1,1,1,1) | |
| _MainTex ("Albedo (RGB)", 2D) = "white" {} | |
| _Emissive ("Emissive", 2D) = "black" {} | |
| _EmissiveColor ("Emissive Color", Color) = (1.0,1.0,1.0,1.0) | |
| _EmissiveMultiplier ("Emissive Multiplier", Range(0.0,10.0)) = 1.0 | |
| _RimColor ("Rim Color", Color) = (0.1,0.1,0.1,1.0) | |
| _RimPower ("Rim Power", Range(0.0,10.0)) = 5.0 |