嘿,刚刚找到了一个我想使用的名为 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();
}