1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace AnyThinkAds.Api
- {
- public class ATRect
- {
- public ATRect(int x, int y, int width, int height, bool usesPixel)
- {
- this.x = x;
- this.y = y;
- this.width = width;
- this.height = height;
- this.usesPixel = usesPixel;
- }
- public ATRect(int x, int y, int width, int height)
- {
- this.x = x;
- this.y = y;
- this.width = width;
- this.height = height;
- }
- public int x = 0;
- public int y = 0;
- public int width = 0;
- public int height = 0;
- // public bool usesPixel = false;
- #if UNITY_ANDROID
- public bool usesPixel = true;
- #else
- public bool usesPixel = false;
- #endif
- }
- public class ATSize
- {
- public ATSize(int width, int height, bool usesPixel)
- {
- this.width = width;
- this.height = height;
- this.usesPixel = usesPixel;
- }
- public ATSize(int width, int height)
- {
- this.width = width;
- this.height = height;
- }
- public int width = 0;
- public int height = 0;
- #if UNITY_ANDROID
- public bool usesPixel = true;
- #else
- public bool usesPixel = false;
- #endif
- }
- }
|