Skip to content

Commit

Permalink
More public methods and enums
Browse files Browse the repository at this point in the history
  • Loading branch information
henbagle committed Sep 23, 2024
1 parent 2e5439a commit 68d0ddb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ME3Tweaks.Wwiser/Model/Hierarchy/Attenuation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class CurveToUse : IBinarySerializable
[Ignore]
public sbyte[] CurveMap { get; set; } = new sbyte[19];

private static int GetCurveCount(uint version) => version switch
public static int GetCurveCount(uint version) => version switch
{
<= 62 => 5,
<= 72 => 4,
Expand Down
2 changes: 1 addition & 1 deletion ME3Tweaks.Wwiser/Model/Hierarchy/RandSeqContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public void Deserialize(Stream stream, Endianness endianness, BinarySerializatio
}

[Flags]
private enum RanSeqInner : byte
public enum RanSeqInner : byte
{
IsUsingWeight = 1 << 0,
ResetPlayListAtEachEnd = 1 << 1,
Expand Down

0 comments on commit 68d0ddb

Please sign in to comment.