using UnityEngine; public class SimulationModelProduct : SimulationModel { public override void GetData(string data) { throw new System.NotImplementedException(); } public override void SetBubble(object data) { Debug.Log(data.ToString()); } }