コード例 #1
0
ファイル: global_gui.cpp プロジェクト: Cheeseness/ags
int GetGUIObjectAt (int xx, int yy) {
    GUIObject *toret = GetGUIControlAtLocation(xx, yy);
    GlobalReturnValue.Invalidate();
    if (toret == NULL)
        return -1;

    return toret->objn;
}