我知道这是一个非常简单的问题,但我无法自己找到答案。 我以这种形式得到了txt文件:
现在我有:
std::ifstream odczyt2;
odczyt2.open("dodatki/textures.txt");
if (odczyt2.is_open())
{
for (int y = 0; y < 4; y++)
{
for (int x = 0; x < 39; x++)
{
odczyt2 >> textury[x][y];
}
}
}
odczyt2.close();
我想制作一系列字符,它们看起来非常相似。