24 lines
641 B
Java
24 lines
641 B
Java
/**
|
|
* 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."
|
|
*
|
|
* @file PythonActivity.java
|
|
* @author rdb
|
|
* @date 2018-02-04
|
|
*/
|
|
|
|
package org.panda3d.android;
|
|
|
|
import org.panda3d.android.PandaActivity;
|
|
|
|
/**
|
|
* This is only declared as a separate class from PandaActivity so that we
|
|
* can have two separate activity definitions in ApplicationManifest.xml.
|
|
*/
|
|
public class PythonActivity extends PandaActivity {
|
|
}
|