using System;

namespace Kasizuki
{
	public interface IStatusCtrl<T>
	{
		void SetData(T obj);
	}
}