Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. public IAds GetObject()
  2. {
  3. #if UNITY_Android
  4. if(platform == Amazon)
  5. return new AmazonAdsController
  6. else
  7. return new AndroidAdsController
  8. #elif UNITY_IOS
  9. return new IOSAdsController
  10. #elif UNITY_WP10
  11. return new WindowsAdsController
  12. }
  13.  
  14. factoryProducer.GetObject(Application.platform)
  15.  
  16. GetObject(RuntimePlatform platform)
  17.  
  18. Dictionary< RuntimePlatform , Action> or Dictionary< RuntimePlatform , IAds>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement