Skip to content

Commit

Permalink
Merge pull request #256 from stayintarkov/cleaning
Browse files Browse the repository at this point in the history
Cleanup the base location class
  • Loading branch information
Plootie committed May 13, 2024
2 parents 02dc1ce + e152f47 commit 88c95a7
Show file tree
Hide file tree
Showing 22 changed files with 364 additions and 318 deletions.
280 changes: 0 additions & 280 deletions SIT.Manager/Models/BaseLocation.cs

This file was deleted.

15 changes: 15 additions & 0 deletions SIT.Manager/Models/Location/AirdropParameter.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
namespace SIT.Manager.Models.Location;

public class AirdropParameter
{
public int AirdropPointDeactivateDistance { get; set; }
public int MinPlayersCountToSpawnAirdrop { get; set; }
public double PlaneAirdropChance { get; set; }
public int PlaneAirdropCooldownMax { get; set; }
public int PlaneAirdropCooldownMin { get; set; }
public int PlaneAirdropEnd { get; set; }
public int PlaneAirdropMax { get; set; }
public int PlaneAirdropStartMax { get; set; }
public int PlaneAirdropStartMin { get; set; }
public int UnsuccessfulTryPenalty { get; set; }
}
11 changes: 11 additions & 0 deletions SIT.Manager/Models/Location/Banner.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
using System.Text.Json.Serialization;

namespace SIT.Manager.Models.Location;

public class Banner
{
[JsonPropertyName("id")]
public string? Id { get; set; }
[JsonPropertyName("pic")]
public Bundle? Pic { get; set; }
}
Loading

0 comments on commit 88c95a7

Please sign in to comment.