Skip to content

Instantly share code, notes, and snippets.

@moon-goon
Created April 13, 2016 10:29
Show Gist options
  • Save moon-goon/ab6ab82aeadc0d2d3fba9fc6d2c42aa6 to your computer and use it in GitHub Desktop.
Save moon-goon/ab6ab82aeadc0d2d3fba9fc6d2c42aa6 to your computer and use it in GitHub Desktop.
using UnityEngine;
using System.Collections;
[System.Serializable]
public class Game {
public static Game current;
public Character warrior;
public Game () {
warrior = new Character();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment