Skip to content

Commit

Permalink
chore: move structures
Browse files Browse the repository at this point in the history
  • Loading branch information
zhyupe committed Oct 8, 2024
1 parent 6462a82 commit e4ed5f6
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
4 changes: 1 addition & 3 deletions Cafe.Matcha/Network/NetworkMonitor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,12 @@ namespace Cafe.Matcha.Network
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Threading;
using Cafe.Matcha.Constant;
using Cafe.Matcha.DTO;
using Cafe.Matcha.Models;
using Cafe.Matcha.Network.Universalis;
using Cafe.Matcha.Network.Structures;
using Cafe.Matcha.Utils;

internal interface INetworkMonitor
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Cafe.Matcha.Network.Universalis
namespace Cafe.Matcha.Network.Structures
{
using System.Collections.Generic;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Cafe.Matcha.Network.Universalis
namespace Cafe.Matcha.Network.Structures
{
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Cafe.Matcha.Network.Universalis
namespace Cafe.Matcha.Network.Structures
{
/// <summary>
/// An interface that represents market board purchase information. This message is received from the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Cafe.Matcha.Network.Universalis
namespace Cafe.Matcha.Network.Structures
{
/// <summary>
/// An interface that represents market board purchase information. This message is sent from the
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Cafe.Matcha.Network.Universalis
namespace Cafe.Matcha.Network.Structures
{
using System;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Cafe.Matcha.Network.Universalis
namespace Cafe.Matcha.Network.Structures
{
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Cafe.Matcha.Network.Universalis
namespace Cafe.Matcha.Network.Structures
{
using System;
using System.Collections.Generic;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Cafe.Matcha.Network.Universalis
namespace Cafe.Matcha.Network.Structures
{
using System.Collections.Generic;
using System.IO;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Cafe.Matcha.Network.Universalis
namespace Cafe.Matcha.Network.Structures
{
using System.IO;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Cafe.Matcha.Network.Universalis
namespace Cafe.Matcha.Network.Structures
{
using System.IO;
using System.Windows.Markup;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Cafe.Matcha.Network.Universalis
namespace Cafe.Matcha.Network.Structures
{
using System;
using System.IO;
Expand Down
1 change: 1 addition & 0 deletions Cafe.Matcha/Network/Universalis/Api.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ namespace Cafe.Matcha.Network.Universalis
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Cafe.Matcha.Network.Structures;
using Cafe.Matcha.Utils;
using Newtonsoft.Json;

Expand Down
1 change: 1 addition & 0 deletions Cafe.Matcha/Network/Universalis/PacketProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
using System.Reactive.Linq;
using System.Threading.Tasks;
using Cafe.Matcha.Constant;
using Cafe.Matcha.Network.Structures;

internal class PacketProcessor : IDisposable
{
Expand Down

0 comments on commit e4ed5f6

Please sign in to comment.