comparison src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle/store/operations/NodeOperation.cs @ 7:02b2ab7bffe6

fix
author Kazuma
date Tue, 27 Sep 2016 18:36:05 +0900
parents dec15de2c6ff
children
comparison
equal deleted inserted replaced
5:0428c8888abf 7:02b2ab7bffe6
2 public interface NodeOperation { 2 public interface NodeOperation {
3 Command getCommand(); 3 Command getCommand();
4 Either<Error,TreeNode> invoke (TreeNode _target); 4 Either<Error,TreeNode> invoke (TreeNode _target);
5 int getPosition(); 5 int getPosition();
6 string getKey(); 6 string getKey();
7 GameObject getValue(); 7 byte[] getValue();
8 } 8 }