#include "HEAD.h"





pack pack::operator=(const pack & target)

{

    for(int x = 0; x < str_count; x++)

        str [x] = target.str[x];

    for(int x = 0; x < stb_count; x++)

        stb [x] = target.stb[x];

    for(int x = 0; x < str_count; x++)

    {

        for(int y = 0; y < stb_count; y++)

        {

            testm_copy_rand[x][y] = target.testm_copy_rand[x][y];

        }

    }

    wcords = target.wcords;

    return *this;

}



pack::pack(const pack & target)

{

    for(int x = 0; x < str_count; x++)

        str [x] = target.str[x];

    for(int x = 0; x < stb_count; x++)

        stb [x] = target.stb[x];

    for(int x = 0; x < str_count; x++)

    {

        for(int y = 0; y < stb_count; y++)

        {

            testm_copy_rand[x][y] = target.testm_copy_rand[x][y];

        }

    }

    wcords = target.wcords;

}















