-
-
Notifications
You must be signed in to change notification settings - Fork 369
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed SteamRemoteplay folder to SteamRemotePlay. Fixes #374
- Loading branch information
1 parent
2aca2e9
commit f8a353b
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
64 changes: 64 additions & 0 deletions
64
Plugins/Steamworks.NET/types/SteamRemotePlay/RemotePlaySessionID_t.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
// This file is provided under The MIT License as part of Steamworks.NET. | ||
// Copyright (c) 2013-2019 Riley Labrecque | ||
// Please see the included LICENSE.txt for additional information. | ||
|
||
// This file is automatically generated. | ||
// Changes to this file will be reverted when you update Steamworks.NET | ||
|
||
#if UNITY_ANDROID || UNITY_IOS || UNITY_TIZEN || UNITY_TVOS || UNITY_WEBGL || UNITY_WSA || UNITY_PS4 || UNITY_WII || UNITY_XBOXONE || UNITY_SWITCH | ||
#define DISABLESTEAMWORKS | ||
#endif | ||
|
||
#if !DISABLESTEAMWORKS | ||
|
||
using System.Runtime.InteropServices; | ||
using IntPtr = System.IntPtr; | ||
|
||
namespace Steamworks { | ||
[System.Serializable] | ||
public struct RemotePlaySessionID_t : System.IEquatable<RemotePlaySessionID_t>, System.IComparable<RemotePlaySessionID_t> { | ||
public uint m_RemotePlaySessionID; | ||
|
||
public RemotePlaySessionID_t(uint value) { | ||
m_RemotePlaySessionID = value; | ||
} | ||
|
||
public override string ToString() { | ||
return m_RemotePlaySessionID.ToString(); | ||
} | ||
|
||
public override bool Equals(object other) { | ||
return other is RemotePlaySessionID_t && this == (RemotePlaySessionID_t)other; | ||
} | ||
|
||
public override int GetHashCode() { | ||
return m_RemotePlaySessionID.GetHashCode(); | ||
} | ||
|
||
public static bool operator ==(RemotePlaySessionID_t x, RemotePlaySessionID_t y) { | ||
return x.m_RemotePlaySessionID == y.m_RemotePlaySessionID; | ||
} | ||
|
||
public static bool operator !=(RemotePlaySessionID_t x, RemotePlaySessionID_t y) { | ||
return !(x == y); | ||
} | ||
|
||
public static explicit operator RemotePlaySessionID_t(uint value) { | ||
return new RemotePlaySessionID_t(value); | ||
} | ||
|
||
public static explicit operator uint(RemotePlaySessionID_t that) { | ||
return that.m_RemotePlaySessionID; | ||
} | ||
|
||
public bool Equals(RemotePlaySessionID_t other) { | ||
return m_RemotePlaySessionID == other.m_RemotePlaySessionID; | ||
} | ||
|
||
public int CompareTo(RemotePlaySessionID_t other) { | ||
return m_RemotePlaySessionID.CompareTo(other.m_RemotePlaySessionID); | ||
} | ||
} | ||
} | ||
|
||
#endif // !DISABLESTEAMWORKS |