-
-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #581 from hubastard/upgrade-0.9.27
fix compatibility with dsp 0.9.27.14659
- Loading branch information
Showing
44 changed files
with
1,489 additions
and
290 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
namespace NebulaModel.Packets.Logistics | ||
{ | ||
public class DispenserAddTakePacket | ||
{ | ||
public int PlanetId { get; set; } | ||
public int EntityId { get; set; } | ||
public EDispenserAddTakeEvent AddTakeEvent { get; set; } | ||
public int ItemId { get; set; } | ||
public int ItemCount { get; set; } | ||
public int ItemInc { get; set; } | ||
|
||
public DispenserAddTakePacket() { } | ||
public DispenserAddTakePacket(int planetId, int entityId, EDispenserAddTakeEvent addTakeEvent, int itemId, int itemCount, int itemInc) | ||
{ | ||
PlanetId = planetId; | ||
EntityId = entityId; | ||
AddTakeEvent = addTakeEvent; | ||
ItemId = itemId; | ||
ItemCount = itemCount; | ||
ItemInc = itemInc; | ||
} | ||
} | ||
|
||
public enum EDispenserAddTakeEvent | ||
{ | ||
None, | ||
ManualAdd, | ||
ManualTake, | ||
CourierAdd, | ||
CourierTake | ||
} | ||
} |
Oops, something went wrong.