Skip to content
This repository has been archived by the owner on Jul 28, 2020. It is now read-only.

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MathewSachin committed Nov 21, 2017
1 parent 32e5d4b commit d40a053
Show file tree
Hide file tree
Showing 113 changed files with 11,189 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Core/Abilities/Ability.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
namespace Poke
{
public partial class Ability
{
Ability(string Name)
{
this.Name = Name;

Lists.Abilities.Add(this);
}

public string Name { get; }

public string Description { get; private set; }

public override string ToString() => Name;
}
}
Loading

0 comments on commit d40a053

Please sign in to comment.