com.guru.unity.max/Amazon/Scripts/Common/ISlotGroup.cs

9 lines
160 B
C#
Raw Normal View History

2023-12-26 03:47:44 +00:00
namespace AmazonAds{
public interface ISlotGroup
{
void AddSlot(int width, int height, string uid);
void AddSlot(AdSize size);
}
}