This file contains 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
#include <stdio.h> | |
#include <stdlib.h> | |
#define go { | |
#define stop } | |
#define maybe if | |
#define sometime while | |
#define iz = | |
#define ithinkis == | |
#define county int |
This file contains 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 UnityEngine; | |
public static class VectorExtensions { | |
public static Vector2 xy(this Vector3 v3) | |
{ | |
return new Vector2(v3.x, v3.y); | |
} | |
public static Vector2 xz(this Vector3 v3) | |
{ |