A game framework written with osu! in mind.
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2// See the LICENCE file in the repository root for full licence text.
3
4using System;
5using System.Runtime.InteropServices;
6
7namespace osu.Framework.Platform.MacOS.Native
8{
9 internal static class Selector
10 {
11 [DllImport(Cocoa.LIB_OBJ_C, EntryPoint = "sel_registerName")]
12 public static extern IntPtr Get(string name);
13 }
14}