示例#1
0
 //constructors
 public BossBase(Vector2 centerLocation, IBossBehavior bossBehavior, BulletPool bulletPool, GameTime gameTime)
 {
     this.centerLocation = centerLocation;
     this.bossBehavior = bossBehavior;
     BulletPool = bulletPool;
     GameTime = gameTime;
 }
示例#2
0
 public void SetBossBehavior(IBossBehavior bossBehavior)
 {
     this.bossBehavior = bossBehavior;
 }
示例#3
0
 public BossDebug(Vector2 centerLocation, IBossBehavior bossBehavior, BulletPool bulletPool, GameTime gameTime)
     : base(centerLocation, bossBehavior, bulletPool, gameTime)
 {
 }