NPC Quotes
1.0.0
??単純なNPC引用レポを引用します。ハックトーバーフェストに簡単に貢献できます。
このプロジェクトに貢献するための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...