Created
June 28, 2018 02:53
-
-
Save paulostradioti/5487037e8dc8fdb941ae483f997ff837 to your computer and use it in GitHub Desktop.
Exemplo de classe com construtor padrão
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Dragon | |
{ | |
public bool Dracarys() | |
{ | |
// Burn all the enemies | |
return true; //return true because they are all dead | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment