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...