ShotInfo.ShotInfo C# (CSharp) Method

ShotInfo() public method

public ShotInfo ( GameObject shooter, Vector3 location, int damage ) : System.Collections
shooter GameObject
location Vector3
damage int
return System.Collections
    public ShotInfo(GameObject shooter, Vector3 location, int damage)
    {
        m_shooter = shooter;
        m_damage = damage;
        m_location = location;
    }
ShotInfo