forked from Impostor/Impostor
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split ShipStatus to multiple classes, implement new door types
- Loading branch information
Showing
34 changed files
with
419 additions
and
190 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
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 |
---|---|---|
@@ -1,9 +1,13 @@ | ||
namespace Impostor.Api.Net.Inner | ||
using Impostor.Api.Games; | ||
|
||
namespace Impostor.Api.Net.Inner | ||
{ | ||
public interface IInnerNetObject | ||
{ | ||
public uint NetId { get; } | ||
|
||
public int OwnerId { get; } | ||
|
||
public IGame Game { get; } | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/Impostor.Api/Net/Inner/Objects/ShipStatus/IInnerAirshipStatus.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,6 @@ | ||
namespace Impostor.Api.Net.Inner.Objects.ShipStatus | ||
{ | ||
public interface IInnerAirshipStatus : IInnerShipStatus | ||
{ | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/Impostor.Api/Net/Inner/Objects/ShipStatus/IInnerMiraShipStatus.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,6 @@ | ||
namespace Impostor.Api.Net.Inner.Objects.ShipStatus | ||
{ | ||
public interface IInnerMiraShipStatus : IInnerShipStatus | ||
{ | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/Impostor.Api/Net/Inner/Objects/ShipStatus/IInnerPolusShipStatus.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,6 @@ | ||
namespace Impostor.Api.Net.Inner.Objects.ShipStatus | ||
{ | ||
public interface IInnerPolusShipStatus : IInnerShipStatus | ||
{ | ||
} | ||
} |
2 changes: 1 addition & 1 deletion
2
...Api/Net/Inner/Objects/IInnerShipStatus.cs → ...er/Objects/ShipStatus/IInnerShipStatus.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
6 changes: 6 additions & 0 deletions
6
src/Impostor.Api/Net/Inner/Objects/ShipStatus/IInnerSkeldShipStatus.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,6 @@ | ||
namespace Impostor.Api.Net.Inner.Objects.ShipStatus | ||
{ | ||
public interface IInnerSkeldShipStatus : IInnerShipStatus | ||
{ | ||
} | ||
} |
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
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
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
Oops, something went wrong.