Skip to content

Commit

Permalink
added checkbox to floor skill levels to legal levels
Browse files Browse the repository at this point in the history
  • Loading branch information
tolik518 committed Aug 5, 2024
1 parent 1bd795a commit 3c4bae2
Show file tree
Hide file tree
Showing 3 changed files with 1,420 additions and 1,384 deletions.
8 changes: 5 additions & 3 deletions SoG_SGreader/Enum/Attribute/SkillMaxLevelAttribute.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
namespace SoG_SGreader.Enum.Attribute
using System;

namespace SoG_SGreader.Enum.Attribute
{
public class SkillMaxLevelAttribute : System.Attribute
internal class SkillMaxLevelAttribute : System.Attribute
{
public int MaxLevel { get; }

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

0 comments on commit 3c4bae2

Please sign in to comment.