-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev'
- Loading branch information
Showing
62 changed files
with
2,011 additions
and
609 deletions.
There are no files selected for viewing
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,7 @@ | ||
image: mono:latest | ||
|
||
install: | ||
- nuget restore Phinix.sln | ||
|
||
script: | ||
- msbuild /property:Configuration=TravisCI ./Phinix.sln |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -267,3 +267,6 @@ Client/1.*/Assemblies/*.dll | |
|
||
# Git rubbish | ||
*.orig | ||
|
||
# Phinix credentials | ||
**/PhinixCredentials.bin |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
namespace PhinixClient | ||
{ | ||
/// <summary> | ||
/// Event args for when a user is blocked or unblocked. | ||
/// </summary> | ||
public class BlockedUsersChangedEventArgs | ||
{ | ||
/// <summary> | ||
/// UUID of the user. | ||
/// </summary> | ||
public readonly string Uuid; | ||
|
||
/// <summary> | ||
/// The user's new blocked state. | ||
/// </summary> | ||
public readonly bool IsBlocked; | ||
|
||
/// <summary> | ||
/// Creates a new <see cref="BlockedUsersChangedEventArgs"/> with the given user's UUID and blocked state. | ||
/// </summary> | ||
/// <param name="uuid">User's UUID</param> | ||
/// <param name="isBlocked">User's new blocked state</param> | ||
public BlockedUsersChangedEventArgs(string uuid, bool isBlocked) | ||
{ | ||
this.Uuid = uuid; | ||
this.IsBlocked = isBlocked; | ||
} | ||
} | ||
} |
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
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,14 @@ | ||
using UnityEngine; | ||
|
||
namespace PhinixClient.GUI | ||
{ | ||
public class BlankWidget : Displayable | ||
{ | ||
/// <inheritdoc /> | ||
public override void Draw(Rect inRect) | ||
{ | ||
// Don't draw anything, just return | ||
return; | ||
} | ||
} | ||
} |
Oops, something went wrong.