view Main/jungle-main/core/Attributes.cs @ 32:07318c10b894

add getBytes method.
author Kazuma Takeda
date Fri, 20 Jan 2017 07:43:43 +0900
parents 1466993c104c
children f2ea780b3e80
line wrap: on
line source

using UnityEngine;
public interface Attributes{
	object get (string key);
	T get<T> (string key);
	byte[] getBytes(string key);
	string getString (string key);
}