コード例 #1
0
ファイル: GameMain.cs プロジェクト: Valentin991/temporaire
 //constructor
 public GameMain()
 {
     LocalPlayer=new Player(this);
 }
コード例 #2
0
ファイル: Projectile.cs プロジェクト: Valentin991/temporaire
 public Projectile(Player player, Direction direction, GameMain parent)
     : base(new Rectangle(player.Hitbox.X + 10, player.Hitbox.Y + 17, ressources.projectile.Bounds.Width, ressources.projectile.Bounds.Height), parent)
 {
     this.direction = direction;
 }