PlumberUltimateAds/Assets/Scripts/LTEvent.cs

27 lines
466 B
C#

/*
http://www.cgsoso.com/forum-211-1.html
CG Unity3d Unity3d VIP
CGSOSO CG
daily assets update for try.
U should buy the asset from home store if u use it in your project!
*/
public class LTEvent
{
public int id;
public object data;
public LTEvent(int id, object data)
{
this.id = id;
this.data = data;
}
}