using UnityEngine;
using System.Collections;
public class Thing : MonoBehaviour {
public int thing;
public int otherThing;
public int answer;
// Use this for initialization
void Start () {
thing = 5;
otherThing = 10;
}
// Update is called once per frame
void Update () {
Debug.Log(answer);
thing + otherThing = answer;