comparison src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle/store/operations/NodeOperation.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
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 }