MCLawl.Group.Group C# (CSharp) Method

Group() public method

public Group ( LevelPermission Perm, int maxB, string fullName, char newColor, string file ) : System
Perm LevelPermission
maxB int
fullName string
newColor char
file string
return System
        public Group(LevelPermission Perm, int maxB, string fullName, char newColor, string file)
        {
            Permission = Perm;
            maxBlocks = maxB;
            trueName = fullName;
            name = trueName.ToLower();
            color = "&" + newColor;
            fileName = file;
            if (name != "nobody")
                playerList = PlayerList.Load(fileName, this);
            else
                playerList = new PlayerList();
        }

Same methods

Group::Group ( ) : System