Skip to content

Commit 68d0ddb

Browse files
committed
More public methods and enums
1 parent 2e5439a commit 68d0ddb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ME3Tweaks.Wwiser/Model/Hierarchy/Attenuation.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class CurveToUse : IBinarySerializable
4040
[Ignore]
4141
public sbyte[] CurveMap { get; set; } = new sbyte[19];
4242

43-
private static int GetCurveCount(uint version) => version switch
43+
public static int GetCurveCount(uint version) => version switch
4444
{
4545
<= 62 => 5,
4646
<= 72 => 4,

ME3Tweaks.Wwiser/Model/Hierarchy/RandSeqContainer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ public void Deserialize(Stream stream, Endianness endianness, BinarySerializatio
115115
}
116116

117117
[Flags]
118-
private enum RanSeqInner : byte
118+
public enum RanSeqInner : byte
119119
{
120120
IsUsingWeight = 1 << 0,
121121
ResetPlayListAtEachEnd = 1 << 1,

0 commit comments

Comments
 (0)