Skip to content

Commit 8bb82b7

Browse files
committed
Merge pull request #961 from PlayEveryWare/integrate/1.16.4
integrate/Integrate 1.16.4
1 parent 201acf8 commit 8bb82b7

26 files changed

+191
-52
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:aa2712cc2ae3e8a997803b8a8e31f48c3af027d9a071e0f17cde49e6a7c8df41
3-
size 28348072
2+
oid sha256:78c79a46b31919256f415a59080ab8bf3123d1025664a9667dc0f457aff04f75
3+
size 28413432
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:284201afa667e80f3feeeb45200516169467b56765a9adfe55ce5406099c62ab
3-
size 18104808
2+
oid sha256:aba8695b971b5e247a03b0269ca0678c3d164d6ac1b15c78f512356ada74d09e
3+
size 18199528
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:63706183da128ef27291e51f0d439dee26d9af8f329ef6fb5a73fbb6842b599e
3-
size 13922280
2+
oid sha256:ab1c4bea182420d7c01def7799fd5ce6297df8eb08d8e04ff547888b987a797e
3+
size 13966312
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:3f7284bd478fbadb5a6f2d0afdaeaa123ef548a4d1ba2bdb6734faf3212fe826
3-
size 11199424
2+
oid sha256:0a87e4ab94375970c14de1ccff17d2764e1ab58f9e35546528839a32399d409a
3+
size 11389408

Assets/Plugins/iOS/EOSSDK.framework/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<key>DTXcodeBuild</key>
4242
<string>9M174d</string>
4343
<key>MinimumOSVersion</key>
44-
<string>11.0</string>
44+
<string>12.0</string>
4545
<key>UIDeviceFamily</key>
4646
<array>
4747
<integer>1</integer>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:97c87f87cad5e768ccaef4495c7a9be02deaad49ee69d9134fb70084d1209094
3-
size 45422800
2+
oid sha256:d7f6217e9e0ccf306e2a403338f59fc5f26c8625b27f89e7d9ea87b238cacb1a
3+
size 45687360
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// Copyright Epic Games, Inc. All Rights Reserved.
2+
// This file is automatically generated. Changes to this file may be overwritten.
3+
4+
namespace Epic.OnlineServices.AntiCheatCommon
5+
{
6+
/// <summary>
7+
/// Flags describing the type of competition taking place
8+
/// </summary>
9+
public enum AntiCheatCommonGameRoundCompetitionType : int
10+
{
11+
/// <summary>
12+
/// No particular competition type applies
13+
/// </summary>
14+
None = 0,
15+
/// <summary>
16+
/// Casual unranked play
17+
/// </summary>
18+
Casual = 1,
19+
/// <summary>
20+
/// Ranked play, usually with skill based matchmaking
21+
/// </summary>
22+
Ranked = 2,
23+
/// <summary>
24+
/// Organized competitive play like a tournament
25+
/// </summary>
26+
Competitive = 3
27+
}
28+
}

com.playeveryware.eos/Runtime/EOS_SDK/Generated/AntiCheatCommon/AntiCheatCommonGameRoundCompetitionType.cs.meta

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

com.playeveryware.eos/Runtime/EOS_SDK/Generated/AntiCheatCommon/AntiCheatCommonInterface.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public sealed partial class AntiCheatCommonInterface
1111

1212
public const int LoggameroundendApiLatest = 1;
1313

14-
public const int LoggameroundstartApiLatest = 1;
14+
public const int LoggameroundstartApiLatest = 2;
1515

1616
public const int LogplayerdespawnApiLatest = 1;
1717

com.playeveryware.eos/Runtime/EOS_SDK/Generated/AntiCheatCommon/LogGameRoundStartOptions.cs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ public struct LogGameRoundStartOptions
2424
/// Optional length of the game round to be played, in seconds. If none, use 0.
2525
/// </summary>
2626
public uint RoundTimeSeconds { get; set; }
27+
28+
/// <summary>
29+
/// Type of competition for this game round
30+
/// </summary>
31+
public AntiCheatCommonGameRoundCompetitionType CompetitionType { get; set; }
2732
}
2833

2934
[System.Runtime.InteropServices.StructLayout(System.Runtime.InteropServices.LayoutKind.Sequential, Pack = 8)]
@@ -34,6 +39,7 @@ internal struct LogGameRoundStartOptionsInternal : ISettable<LogGameRoundStartOp
3439
private System.IntPtr m_LevelName;
3540
private System.IntPtr m_ModeName;
3641
private uint m_RoundTimeSeconds;
42+
private AntiCheatCommonGameRoundCompetitionType m_CompetitionType;
3743

3844
public Utf8String SessionIdentifier
3945
{
@@ -67,13 +73,22 @@ public uint RoundTimeSeconds
6773
}
6874
}
6975

76+
public AntiCheatCommonGameRoundCompetitionType CompetitionType
77+
{
78+
set
79+
{
80+
m_CompetitionType = value;
81+
}
82+
}
83+
7084
public void Set(ref LogGameRoundStartOptions other)
7185
{
7286
m_ApiVersion = AntiCheatCommonInterface.LoggameroundstartApiLatest;
7387
SessionIdentifier = other.SessionIdentifier;
7488
LevelName = other.LevelName;
7589
ModeName = other.ModeName;
7690
RoundTimeSeconds = other.RoundTimeSeconds;
91+
CompetitionType = other.CompetitionType;
7792
}
7893

7994
public void Set(ref LogGameRoundStartOptions? other)
@@ -85,6 +100,7 @@ public void Set(ref LogGameRoundStartOptions? other)
85100
LevelName = other.Value.LevelName;
86101
ModeName = other.Value.ModeName;
87102
RoundTimeSeconds = other.Value.RoundTimeSeconds;
103+
CompetitionType = other.Value.CompetitionType;
88104
}
89105
}
90106

0 commit comments

Comments
 (0)