Skip to content

Commit 8e435ce

Browse files
committed
deps: Updated the dependencies
1 parent 4595920 commit 8e435ce

5 files changed

Lines changed: 14 additions & 10 deletions

File tree

DataAccess/DataObjects/TileEntity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using NuciXNA.DataAccess.DataObjects;
1+
using NuciDAL.DataObjects;
22

33
namespace SokoGrump.DataAccess.DataObjects
44
{

DataAccess/Repositories/BoardRepository.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,9 @@ public IEnumerable<BoardEntity> GetAll()
122122
return boardEntities;
123123
}
124124

125+
public BoardEntity GetRandom()
126+
=> throw new NotImplementedException();
127+
125128
/// <summary>
126129
/// Updates the specified board.
127130
/// </summary>

GameWindow.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
using Microsoft.Xna.Framework;
1+
using System;
2+
using Microsoft.Xna.Framework;
23
using Microsoft.Xna.Framework.Graphics;
3-
4+
using Microsoft.Xna.Framework.Input;
45
using NuciXNA.DataAccess.Content;
56
using NuciXNA.Graphics;
67
using NuciXNA.Gui;
@@ -100,7 +101,7 @@ protected override void Update(GameTime gameTime)
100101

101102
if (IsActive)
102103
{
103-
InputManager.Instance.Update();
104+
InputManager.Instance.Update(Window);
104105
}
105106
else // TODO: It shouldn't reset them every single tick when the window's not active
106107
{

Settings/SettingsManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.IO;
22
using System.Threading;
3-
using NuciXNA.DataAccess.IO;
3+
using NuciDAL.IO;
44
using NuciXNA.Graphics;
55

66
namespace SokoGrump.Settings

SokoGrump.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.4.1" />
17-
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.4.1" />
16+
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.4" />
17+
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.4" />
1818
<PackageReference Include="NuciDAL" Version="3.0.1" />
19-
<PackageReference Include="NuciXNA.DataAccess" Version="4.0.2" />
19+
<PackageReference Include="NuciXNA.DataAccess" Version="4.0.3" />
2020
<PackageReference Include="NuciXNA.Graphics" Version="2.2.0" />
2121
<PackageReference Include="NuciXNA.Gui" Version="3.0.2" />
22-
<PackageReference Include="NuciXNA.Input" Version="2.0.1" />
23-
<PackageReference Include="NuciXNA.Primitives" Version="2.1.3" />
22+
<PackageReference Include="NuciXNA.Input" Version="2.0.2" />
23+
<PackageReference Include="NuciXNA.Primitives" Version="2.1.4" />
2424
</ItemGroup>
2525

2626
<ItemGroup>

0 commit comments

Comments
 (0)