style: run formatter

This commit is contained in:
Anna 2022-01-30 23:45:07 -05:00
parent 7df1d8818b
commit cba515d955
8 changed files with 9 additions and 14 deletions

View File

@ -1,6 +1,6 @@
using ChatTwo.Code;
namespace ChatTwo.GameFunctions.Types;
namespace ChatTwo.GameFunctions.Types;
internal class ChannelSwitchInfo {
internal InputChannel? Channel { get; }

View File

@ -1,4 +1,4 @@
namespace ChatTwo.GameFunctions.Types;
namespace ChatTwo.GameFunctions.Types;
internal enum RotateMode {
None,

View File

@ -1,10 +1,10 @@
namespace ChatTwo.GameFunctions.Types;
namespace ChatTwo.GameFunctions.Types;
internal sealed class TellHistoryInfo {
internal string Name { get; }
internal uint World { get; }
internal ulong ContentId { get; }
internal TellHistoryInfo(string name, uint world, ulong contentId) {
this.Name = name;
this.World = world;

View File

@ -1,11 +1,11 @@
namespace ChatTwo.GameFunctions.Types;
namespace ChatTwo.GameFunctions.Types;
internal sealed class TellTarget {
internal string Name { get; }
internal ushort World { get; }
internal ulong ContentId { get; }
internal TellReason Reason { get; }
internal TellTarget(string name, ushort world, ulong contentId, TellReason reason) {
this.Name = name;
this.World = world;

View File

@ -36,7 +36,7 @@ public sealed class Plugin : IDalamudPlugin {
[PluginService]
internal GameGui GameGui { get; init; }
[PluginService]
internal KeyState KeyState { get; init; }

View File

@ -10,7 +10,7 @@ namespace ChatTwo;
internal class Store : IDisposable {
internal const int MessagesLimit = 10_000;
internal sealed class MessagesLock : IDisposable {
private Mutex Mutex { get; }
internal List<Message> Messages { get; }

View File

@ -1,5 +0,0 @@
namespace ChatTwo.Util;
public class DataUtil {
}

View File

@ -1,4 +1,4 @@
namespace ChatTwo.Util;
namespace ChatTwo.Util;
internal static class NumUtil {
internal static uint NumberOfSetBits(uint i) {