Change match struct to a class

There was no reason for it to be a value type.
This commit is contained in:
Zacharie Day 2020-09-02 19:36:56 -04:00 committed by Anna
parent e24b9649c7
commit 450bca76b5
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,7 @@ namespace HudSwap {
}
}
public struct HudConditionMatch {
public class HudConditionMatch {
/// <summary>
/// Values stored here should be the abbreviation of the class/job name (all caps).
/// We do this because using <see cref="ClassJob"/> results in circular dependency errors when serializing.