File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- using NuciXNA . DataAccess . DataObjects ;
1+ using NuciDAL . DataObjects ;
22
33namespace SokoGrump . DataAccess . DataObjects
44{
Original file line number Diff line number Diff 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>
Original file line number Diff line number Diff line change 1- using Microsoft . Xna . Framework ;
1+ using System ;
2+ using Microsoft . Xna . Framework ;
23using Microsoft . Xna . Framework . Graphics ;
3-
4+ using Microsoft . Xna . Framework . Input ;
45using NuciXNA . DataAccess . Content ;
56using NuciXNA . Graphics ;
67using 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 {
Original file line number Diff line number Diff line change 11using System . IO ;
22using System . Threading ;
3- using NuciXNA . DataAccess . IO ;
3+ using NuciDAL . IO ;
44using NuciXNA . Graphics ;
55
66namespace SokoGrump . Settings
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments