diff src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle/store/operations/PutAttributeOperation.cs @ 6:4d08270a61c8

fix
author Kazuma
date Tue, 19 Jul 2016 16:47:43 +0900
parents dec15de2c6ff
children
line wrap: on
line diff
--- a/src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle/store/operations/PutAttributeOperation.cs	Tue Jul 05 07:20:41 2016 +0900
+++ b/src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle/store/operations/PutAttributeOperation.cs	Tue Jul 19 16:47:43 2016 +0900
@@ -2,9 +2,9 @@
 
 public class PutAttributeOperation : NodeOperation {
 	private string key;
-	private GameObject value;
+	private byte value;
 
-	public PutAttributeOperation(string _key,GameObject _value)
+	public PutAttributeOperation(string _key, byte _value)
 	{
 		key = _key;
 		value = _value;
@@ -30,7 +30,7 @@
 		return key;
 	}
 
-	public GameObject getValue()
+	public byte getValue()
 	{
 		return value;
 	}