Skip to content

Commit

Permalink
added maxlevel attribute to skills
Browse files Browse the repository at this point in the history
  • Loading branch information
tolik518 committed Aug 5, 2024
1 parent 0fc4c69 commit f579f0c
Show file tree
Hide file tree
Showing 5 changed files with 377 additions and 117 deletions.
12 changes: 12 additions & 0 deletions SoG_SGreader/Enum/Attribute/SkillMaxLevelAttribute.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
namespace SoG_SGreader.Enum.Attribute
{
public class SkillMaxLevelAttribute : System.Attribute
{
public int MaxLevel { get; }

public SkillMaxLevelAttribute(int maxLevel)
{
MaxLevel = maxLevel;
}
}
}
Loading

0 comments on commit f579f0c

Please sign in to comment.