-
Notifications
You must be signed in to change notification settings - Fork 8
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 #12 from seionmoya/main
Update location model
- Loading branch information
Showing
18 changed files
with
426,439 additions
and
426,331 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
41 changes: 41 additions & 0 deletions
41
Fuyu.Platform.Common/Models/EFT/Locations/AirdropParameters.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,41 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace Fuyu.Platform.Common.Models.EFT.Locations | ||
{ | ||
[DataContract] | ||
public struct AirdropParameters | ||
{ | ||
[DataMember] | ||
public string id; | ||
|
||
[DataMember] | ||
public int PlaneAirdropStartMin; | ||
|
||
[DataMember] | ||
public int PlaneAirdropStartMax; | ||
|
||
[DataMember] | ||
public int PlaneAirdropEnd; | ||
|
||
[DataMember] | ||
public float PlaneAirdropChance; | ||
|
||
[DataMember] | ||
public int PlaneAirdropMax; | ||
|
||
[DataMember] | ||
public int PlaneAirdropCooldownMin; | ||
|
||
[DataMember] | ||
public int PlaneAirdropCooldownMax; | ||
|
||
[DataMember] | ||
public int AirdropPointDeactivateDistance; | ||
|
||
[DataMember] | ||
public int MinPlayersCountToSpawnAirdrop; | ||
|
||
[DataMember] | ||
public int UnsuccessfulTryPenalty; | ||
} | ||
} |
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.Runtime.Serialization; | ||
using Fuyu.Platform.Common.Models.EFT.Common; | ||
|
||
namespace Fuyu.Platform.Common.Models.EFT.Locations | ||
{ | ||
[DataContract] | ||
public struct Banner | ||
{ | ||
[DataMember] | ||
public string id; | ||
|
||
[DataMember] | ||
public BundleAddress pic; | ||
} | ||
} |
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 |
---|---|---|
|
@@ -32,5 +32,8 @@ public struct SpawnPointParam | |
|
||
[DataMember] | ||
public string BotZoneName; | ||
|
||
[DataMember] | ||
public int CorePointId; | ||
} | ||
} |
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,35 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace Fuyu.Platform.Common.Models.EFT.Locations | ||
{ | ||
[DataContract] | ||
public struct Transit | ||
{ | ||
[DataMember] | ||
public int id; | ||
|
||
[DataMember] | ||
public bool active; | ||
|
||
[DataMember] | ||
public string name; | ||
|
||
[DataMember] | ||
public string location; | ||
|
||
[DataMember] | ||
public string description; | ||
|
||
[DataMember] | ||
public int activateAfterSec; | ||
|
||
[DataMember] | ||
public string target; | ||
|
||
[DataMember] | ||
public int time; | ||
|
||
[DataMember] | ||
public string conditions; | ||
} | ||
} |
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.