Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GLMod/EventPatch/MainMenuManagerPatch.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using BepInEx.Unity.IL2CPP.Utils;
using GLMod.Class;
using GLMod.GLEntities;
using GLMod.Services;
using GLMod.Services.Interfaces;
using HarmonyLib;
using Steamworks;
using System;
Expand Down
3 changes: 2 additions & 1 deletion GLMod/GLMod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
using System.Linq;
using GLMod.Enums;
using GLMod.Constants;
using GLMod.Services;
using GLMod.Services.Interfaces;
using GLMod.Services.Implementations;
using Random = System.Random;
using GLMod.GLEntities;
using GLMod.Class;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
using BepInEx.Configuration;
using GLMod.Class;
using GLMod.Constants;
using GLMod.Services.Interfaces;
using Steamworks;
using System;
using System.Collections;
using System.Collections.Generic;

namespace GLMod.Services
namespace GLMod.Services.Implementations
{
/// <summary>
/// Handles user authentication and session management
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
using BepInEx.Logging;
using GLMod.Services.Interfaces;
using GLMod.Constants;
using System;
using System.IO;

namespace GLMod.Services
namespace GLMod.Services.Implementations
{
/// <summary>
/// Service responsible for managing mod configuration
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using AmongUs.GameOptions;
using GLMod.Services.Interfaces;
using BepInEx.Configuration;
using BepInEx.Logging;
using BepInEx.Unity.IL2CPP.Utils.Collections;
Expand All @@ -16,7 +17,7 @@
using System.Threading.Tasks;
using UnityEngine;

namespace GLMod.Services
namespace GLMod.Services.Implementations
{
/// <summary>
/// Service responsible for managing game state and flow
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using BepInEx;
using GLMod.Services.Interfaces;
using BepInEx.Logging;
using GLMod.Class;
using System;
Expand All @@ -10,7 +11,7 @@
using System.Threading.Tasks;
using System.Net.Http;

namespace GLMod.Services
namespace GLMod.Services.Implementations
{
/// <summary>
/// Service responsible for file integrity verification
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
using BepInEx.Logging;
using GLMod.Services.Interfaces;
using GLMod.Class;
using GLMod.GLEntities;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;

namespace GLMod.Services
namespace GLMod.Services.Implementations
{
/// <summary>
/// Service responsible for managing items and DLC ownership
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
using AmongUs.GameOptions;
using GLMod.Services.Interfaces;
using BepInEx.Logging;
using GLMod.Enums;
using System;

namespace GLMod.Services
namespace GLMod.Services.Implementations
{
/// <summary>
/// Service responsible for map-related operations
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
using BepInEx.Logging;
using GLMod.Services.Interfaces;
using GLMod.Class;
using GLMod.GLEntities;
using System;
using System.Collections;
using System.Collections.Generic;

namespace GLMod.Services
namespace GLMod.Services.Implementations
{
/// <summary>
/// Service responsible for managing player ranks
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
using GLMod.Enums;
using GLMod.Services.Interfaces;
using System.Collections.Generic;

namespace GLMod.Services
namespace GLMod.Services.Implementations
{
/// <summary>
/// Service responsible for managing enabled/disabled services
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
using GLMod.Class;
using GLMod.Services.Interfaces;
using GLMod.Constants;
using GLMod.GLEntities;
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;

namespace GLMod.Services
namespace GLMod.Services.Implementations
{
/// <summary>
/// Handles translations and language management
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections;

namespace GLMod.Services
namespace GLMod.Services.Interfaces
{
/// <summary>
/// Interface for authentication and user session management
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace GLMod.Services
namespace GLMod.Services.Interfaces
{
/// <summary>
/// Interface for managing mod configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Collections;
using System.Collections.Generic;

namespace GLMod.Services
namespace GLMod.Services.Interfaces
{
/// <summary>
/// Interface for managing game state and flow
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Collections;

namespace GLMod.Services
namespace GLMod.Services.Interfaces
{
/// <summary>
/// Interface for managing file integrity verification
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections;
using System.Collections.Generic;

namespace GLMod.Services
namespace GLMod.Services.Interfaces
{
/// <summary>
/// Interface for managing items and DLC ownership
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace GLMod.Services
namespace GLMod.Services.Interfaces
{
/// <summary>
/// Interface for managing map-related operations
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using GLMod.GLEntities;
using System.Collections;

namespace GLMod.Services
namespace GLMod.Services.Interfaces
{
/// <summary>
/// Interface for managing player ranks
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using GLMod.Enums;
using System.Collections.Generic;

namespace GLMod.Services
namespace GLMod.Services.Interfaces
{
/// <summary>
/// Interface for managing enabled services
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using System.Collections;
using System.Collections.Generic;

namespace GLMod.Services
namespace GLMod.Services.Interfaces
{
/// <summary>
/// Interface for managing translations and languages
Expand Down