Skip to content

Commit f2c8987

Browse files
authored
Indent
Signed-off-by: GitHub <noreply@github.com>
1 parent 0b7101a commit f2c8987

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

source/Vignette/Audio/AudioManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public void Dispose()
166166

167167
source.Stop();
168168

169-
while(source.TryDequeue(out var buffer))
169+
while (source.TryDequeue(out var buffer))
170170
{
171171
bufferPool.Return(buffer);
172172
}

source/Vignette/Content/AsarLoader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Copyright (c) Cosyne
22
// Licensed under GPL 3.0 with SDK Exception. See LICENSE for details.
33

4-
using craftersmine.Asar.Net;
54
using System;
65
using System.IO;
6+
using craftersmine.Asar.Net;
77

88
namespace Vignette.Content;
99
internal class AsarLoader : IContentLoader<AsarArchive>

source/Vignette/Graphics/IProjector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public interface IProjector
1919
/// <summary>
2020
/// The projector's rotation.
2121
/// </summary>
22-
Vector3 Rotation { get; }
22+
Vector3 Rotation { get; }
2323

2424
/// <summary>
2525
/// The projector's view matrix.

0 commit comments

Comments
 (0)