using System; namespace SSWProject { public class Player { public int angle; public int powder; public String name; public int damage; public int px; public int py; public Player(String name,int px, int py) { this.name = name; this.angle = 90; this.powder = 30; this.damage = 0; this.px = px; this.py = py; } } }