I am working with unity for an iOS game. For unlocking achievement I need to access a "Achievement.mm" file from my c# code:
[DllImport("__Internal")]
private static extern void
GKAchievement(string achievementID, float progress, bool value);
I got this code from a forum. But, what does the "__Internal" means ?