NPC Quotes
1.0.0
?? A simple NPC quotes repo. You can contribute to Hacktoberfest easily.
Here are 4 quick and painless ways to contribute to this project:
Choose all 3, make a pull request for your work and wait for it to be merged!
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 button located at the top of your repo)void Start()
{
var npc = NPC.GetRandom();
Debug.Log(npc.name + " says: "+ npc.quote);
}Result:
Ned says: Winter is coming...
var npc = NPC.GetRandom();
Console.WriteLine(npc.name + " says: "+ npc.quote);Result:
Ned says: Winter is coming...