1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 07:13:58 -05:00

add no recoil detection

This commit is contained in:
RaidMax
2019-06-15 17:37:43 -05:00
parent 46abdd7fbc
commit 475861a769
11 changed files with 1540 additions and 34 deletions

View File

@ -0,0 +1,23 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace SharedLibraryCore.Migrations
{
public partial class AddRecoilOffsetToSnapshot : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<double>(
name: "RecoilOffset",
table: "EFACSnapshot",
nullable: false,
defaultValue: 0.0);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "RecoilOffset",
table: "EFACSnapshot");
}
}
}