15 lines
285 B
C#
15 lines
285 B
C#
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());
|
|
}
|
|
}
|