diff Assets/Application/Scripts/ItemInfo.cs @ 12:b55d586dd4eb

change bind from fmap.
author Kazuma Takeda
date Tue, 07 Feb 2017 20:48:57 +0900
parents 3fefb9f9025d
children
line wrap: on
line diff
--- a/Assets/Application/Scripts/ItemInfo.cs	Sat Jan 28 19:15:44 2017 +0900
+++ b/Assets/Application/Scripts/ItemInfo.cs	Tue Feb 07 20:48:57 2017 +0900
@@ -2,20 +2,6 @@
 using System.Collections.Generic;
 using UnityEngine;
 
-public class ItemInfo {
-
-	public string Type;
-	public int Broken = 2;
-	private int nowBroken = 2;
-	public int indexID = 0;
-	public int itemID = 1;
-	public string ColorCode = "";
-
-	public ItemInfo (int item_id, int broken, string type, string code) {
-		itemID      = item_id;
-		this.Broken = broken;
-		nowBroken   = Broken;
-		Type = type;
-		ColorCode = code;
-	}
+public interface ItemInfo {
+	
 }