mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-06 03:44:00 -04:00
23 lines
655 B
C++
23 lines
655 B
C++
// Filename: panda3dMain.cxx
|
|
// 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."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#include "panda3d.h"
|
|
|
|
// The normal, "console" program.
|
|
int
|
|
main(int argc, char *argv[]) {
|
|
Panda3D program(true);
|
|
return program.run_command_line(argc, argv);
|
|
}
|