Skip to content

Commit

Permalink
fix: modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
jolexxa committed Jan 16, 2025
1 parent ba6c9eb commit 8b5f18d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Chickensoft.Platform/src/macOS/Displays.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace Chickensoft.Platform.MacOS;
using ObjC = Lib.ObjectiveC;
using CG = Lib.CoreGraphics;

internal sealed partial class Displays : RefCounted {
internal static partial class Displays {
/// <summary>
/// Given a pointer to an NSWindow instance, find the CGDirectDisplayID it is
/// on. Godot provides a method to get the NSWindow pointer of the
Expand Down
2 changes: 1 addition & 1 deletion Chickensoft.Platform/src/macOS/lib/CoreGraphics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace Chickensoft.Platform.MacOS.Lib;
using System;
using System.Runtime.InteropServices;

internal sealed partial class CoreGraphics {
internal static partial class CoreGraphics {
#pragma warning disable IDE1006 // Naming Styles
public const string LIB_CORE_GRAPHICS =
"/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics";
Expand Down
2 changes: 1 addition & 1 deletion Chickensoft.Platform/src/macOS/lib/ObjectiveC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Chickensoft.Platform.MacOS.Lib;

using System.Runtime.InteropServices;

internal sealed partial class ObjectiveC {
internal static partial class ObjectiveC {
public const string LIB_OBJ_C = "/usr/lib/libobjc.dylib";
public const int NULL = 0;

Expand Down

0 comments on commit 8b5f18d

Please sign in to comment.