comparison src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle-main/store/operations/DefaultTreeOperation.cs @ 17:01a08cf4b2d9

Liq Files
author Kazuma
date Mon, 07 Nov 2016 01:05:24 +0900
parents abe0c247f5a5
children
comparison
equal deleted inserted replaced
16:8f1ce942abfc 17:01a08cf4b2d9
1 using UnityEngine;
2 using System.Collections;
3
4 public class DefaultTreeOperation : TreeOperation {
5 private NodePath path;
6 private NodeOperation operation;
7
8 public DefaultTreeOperation(NodePath _path, NodeOperation _operation){
9 path = _path;
10 operation = _operation;
11 }
12
13 public NodePath getNodePath() {
14 return path;
15 }
16
17 public NodeOperation getNodeOperation() {
18 return operation;
19 }
20
21 }