Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace PokemonTrainer
- {
- class Pokemon
- {
- public Pokemon(string name, string element, int health)
- {
- this.Name = name;
- this.Element = element;
- this.Health = health;
- }
- public string Name { get; set; }
- public string Element { get; set; }
- public int Health { get; set; }
- }
- }
Add Comment
Please, Sign In to add comment