-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor to re-use more code when sending messages to WaaS. Fix unmar…
…shalling of DropSessionReturn
- Loading branch information
1 parent
252c027
commit 204a034
Showing
5 changed files
with
54 additions
and
40 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
Assets/SequenceSDK/WaaS/DataTypes/ReturnTypes/DropSessionReturn.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,15 @@ | ||
using System; | ||
|
||
namespace Sequence.WaaS | ||
{ | ||
[Serializable] | ||
public class DropSessionReturn | ||
{ | ||
public bool ok { get; private set; } | ||
|
||
public DropSessionReturn(bool ok) | ||
{ | ||
this.ok = ok; | ||
} | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
Assets/SequenceSDK/WaaS/DataTypes/ReturnTypes/DropSessionReturn.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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