Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DataAccess/DataObjects/TileEntity.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using NuciXNA.DataAccess.DataObjects;
using NuciDAL.DataObjects;

namespace SokoGrump.DataAccess.DataObjects
{
Expand Down
3 changes: 3 additions & 0 deletions DataAccess/Repositories/BoardRepository.cs
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ public IEnumerable<BoardEntity> GetAll()
return boardEntities;
}

public BoardEntity GetRandom()
=> throw new NotImplementedException();

/// <summary>
/// Updates the specified board.
/// </summary>
Expand Down
7 changes: 4 additions & 3 deletions GameWindow.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using Microsoft.Xna.Framework;
using System;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;

using Microsoft.Xna.Framework.Input;
using NuciXNA.DataAccess.Content;
using NuciXNA.Graphics;
using NuciXNA.Gui;
Expand Down Expand Up @@ -100,7 +101,7 @@ protected override void Update(GameTime gameTime)

if (IsActive)
{
InputManager.Instance.Update();
InputManager.Instance.Update(Window);
}
else // TODO: It shouldn't reset them every single tick when the window's not active
{
Expand Down
2 changes: 1 addition & 1 deletion Settings/SettingsManager.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.IO;
using System.Threading;
using NuciXNA.DataAccess.IO;
using NuciDAL.IO;
using NuciXNA.Graphics;

namespace SokoGrump.Settings
Expand Down
12 changes: 6 additions & 6 deletions SokoGrump.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
<ItemGroup>
<PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.4" />
<PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.4" />
<PackageReference Include="NuciDAL" Version="2.2.1" />
<PackageReference Include="NuciXNA.DataAccess" Version="3.0.3" />
<PackageReference Include="NuciXNA.Graphics" Version="2.1.1" />
<PackageReference Include="NuciXNA.Gui" Version="3.0.2" />
<PackageReference Include="NuciXNA.Input" Version="2.0.1" />
<PackageReference Include="NuciXNA.Primitives" Version="2.1.1" />
<PackageReference Include="NuciDAL" Version="3.0.1" />
<PackageReference Include="NuciXNA.DataAccess" Version="4.0.3" />
<PackageReference Include="NuciXNA.Graphics" Version="2.2.1" />
<PackageReference Include="NuciXNA.Gui" Version="3.0.3" />
<PackageReference Include="NuciXNA.Input" Version="2.0.2" />
<PackageReference Include="NuciXNA.Primitives" Version="2.1.4" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading