嘿,我刚刚找到了一个名为coni.h的库来改变文本颜色。但是我在其中一个函数中遇到错误:textcolour(RED);它说这是未定义的。
#include <iostream>
#include <string>
#include <conio.h>
#include "Storyline.h"
using namespace std;
int main()
{
Storyline story;
story.Story("Title.txt");
textcolor(MAGENTA+BLINK);
cout << "Hello";
getchar();
getchar();
}
答案 0 :(得分:0)
我只是使用了系统(“color 0a”);来自“Windows.h”。而我现在拥有我需要的东西。