view src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle/store/operations/DefaultTreeOperation.cs @ 0:dec15de2c6ff

first commit
author Kazuma
date Tue, 21 Jun 2016 17:11:12 +0900
parents
children
line wrap: on
line source

using UnityEngine;
using System.Collections;

public class DefaultTreeOperation : TreeOperation {
	private NodePath path;
	private NodeOperation operation;

	public DefaultTreeOperation(NodePath _path, NodeOperation _operation){
		path = _path;
		operation = _operation;
	}

	public NodePath getNodePath() {
		return path;
	}

	public NodeOperation getNodeOperation() {
		return operation;
	}

}