view Assets/Application/Scripts/SaveData.cs @ 3:2dd40b4412e4

Create game base.
author Kazuma
date Mon, 07 Nov 2016 18:42:01 +0900
parents e5ef0342d00b
children 2878be4487ec
line wrap: on
line source

using UnityEngine;
using System.Collections;

public class SaveData : MonoBehaviour {

	public static SaveData Instance;

	// Use this for initialization
	void Awake () {
		if (Instance == null) {
			Instance = this;
		}
	}
}