This file contains hidden or 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 enum BossType | |
{ | |
Good, | |
Bad | |
} | |
public class Boss | |
{ | |
public string Name { get; set; } | |
public double Money { get; set; } |