Skip to content

Commit

Permalink
Indent
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <noreply@github.com>
  • Loading branch information
sr229 committed Jul 20, 2023
1 parent 0b7101a commit f2c8987
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion source/Vignette/Audio/AudioManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public void Dispose()

source.Stop();

while(source.TryDequeue(out var buffer))
while (source.TryDequeue(out var buffer))
{
bufferPool.Return(buffer);
}
Expand Down
2 changes: 1 addition & 1 deletion source/Vignette/Content/AsarLoader.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// Copyright (c) Cosyne
// Licensed under GPL 3.0 with SDK Exception. See LICENSE for details.

using craftersmine.Asar.Net;
using System;
using System.IO;
using craftersmine.Asar.Net;

namespace Vignette.Content;
internal class AsarLoader : IContentLoader<AsarArchive>
Expand Down
2 changes: 1 addition & 1 deletion source/Vignette/Graphics/IProjector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public interface IProjector
/// <summary>
/// The projector's rotation.
/// </summary>
Vector3 Rotation { get; }
Vector3 Rotation { get; }

/// <summary>
/// The projector's view matrix.
Expand Down

0 comments on commit f2c8987

Please sign in to comment.