comparison 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
comparison
equal deleted inserted replaced
5:0428c8888abf 6:4d08270a61c8
1 using UnityEngine; 1 using UnityEngine;
2 2
3 public class PutAttributeOperation : NodeOperation { 3 public class PutAttributeOperation : NodeOperation {
4 private string key; 4 private string key;
5 private GameObject value; 5 private byte value;
6 6
7 public PutAttributeOperation(string _key,GameObject _value) 7 public PutAttributeOperation(string _key, byte _value)
8 { 8 {
9 key = _key; 9 key = _key;
10 value = _value; 10 value = _value;
11 } 11 }
12 12
28 public string getKey() 28 public string getKey()
29 { 29 {
30 return key; 30 return key;
31 } 31 }
32 32
33 public GameObject getValue() 33 public byte getValue()
34 { 34 {
35 return value; 35 return value;
36 } 36 }
37 } 37 }