view Assets/Item.cs @ 3:2dd40b4412e4

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

using UnityEngine;
using System.Collections;

public class Item : MonoBehaviour {

	public Stage.Type Attribute;
	public int ID = 0;

	public void SetHaveObject () {
		Player.Instance.SetHaveObjectNumber (ID);
	}
}