view Main/jungle-main/core/MultiAttributes.cs @ 29:f7616084d3ab

Continue to put on the created path.
author Kazuma Takeda
date Wed, 18 Jan 2017 21:02:24 +0900
parents
children f2ea780b3e80
line wrap: on
line source

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace JungleDB {
	public class MultiAttributes<T> {
		private T attribute;
		public T Attribute { 
			set { this.attribute = value; }
			get { return this.attribute; }
		}

		public MultiAttributes (T value) {
			this.Attribute = value;
		}

		public string getString () {
			return attribute.ToString ();
		}
	}
}