Beispiel #1
0
        public void ChecksWhetherClassImplementsAParticularClassOrInterface()
        {
            var test = new DummyTwo();

            Assert.True(test.Implements(typeof(DummyTwo)));
            Assert.True(test.Implements(typeof(IDummy)));
        }
Beispiel #2
0
    public void Show(string name, Action onFinished)
    {
        this.onFinished       = onFinished;
        DummyTwo.OnAdFinished = this.onFinished;


        DummyTwo.Show();
    }
Beispiel #3
0
    public void Load(string name, Action onLoaded, Action onFailed)
    {
        this.onLoaded = onLoaded;
        this.onFailed = onFailed;

        DummyTwo.OnAdFailed = this.onFailed;
        DummyTwo.OnAdLoaded = this.onLoaded;

        DummyTwo.Load();
    }
Beispiel #4
0
 public void Destroy(string name)
 {
     DummyTwo.Destroy();
 }