37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
// Filename: panda3dMac.h
|
|
// Created by: drose (23Oct09)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef PANDA3DMAC_H
|
|
#define PANDA3DMAC_H
|
|
|
|
#include "panda3d.h"
|
|
|
|
#include <Carbon/Carbon.h>
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : Panda3DMac
|
|
// Description : A specialization of Panda3D for running as a Carbon
|
|
// application on OS X. Instead of taking input from
|
|
// the command line, this program waits quietly for an
|
|
// "open documents" Apple event.
|
|
////////////////////////////////////////////////////////////////////
|
|
class Panda3DMac : public Panda3D {
|
|
public:
|
|
Panda3DMac();
|
|
|
|
void open_p3d_file(FSRef *ref);
|
|
};
|
|
|
|
#endif
|