NPC Quotes
1.0.0
?一个简单的NPC引号回购。您可以轻松地为Hacktoberfest做出贡献。
这是4种为该项目做出贡献的快速且无痛的方法:
选择所有3个,提取您的工作请求,然后等待合并!
git clone https://github.com/your-username/NPC-Quotes.gitgit checkout -b branch-namegit add .
git commit -m 'Commit message'
git push origin branch-nameNew Pull Request按钮) void Start ( )
{
var npc = NPC . GetRandom ( ) ;
Debug . Log ( npc . name + " says: " + npc . quote ) ;
}结果:
Ned says: Winter is coming...
var npc = NPC . GetRandom ( ) ;
Console . WriteLine ( npc . name + " says: " + npc . quote ) ;结果:
Ned says: Winter is coming...