open_toontown_panda3d/panda/src/cftalk/cfCommand.I

52 lines
1.6 KiB
Plaintext

// Filename: cfCommand.I
// Created by: drose (19Feb09)
//
////////////////////////////////////////////////////////////////////
//
// 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."
//
////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
// Function: CFCommand::Constructor
// Access: Protected
// Description:
////////////////////////////////////////////////////////////////////
INLINE CFCommand::
CFCommand() {
}
////////////////////////////////////////////////////////////////////
// Function: CFDoCullCommand::Constructor
// Access: Protected
// Description:
////////////////////////////////////////////////////////////////////
INLINE CFDoCullCommand::
CFDoCullCommand() {
}
////////////////////////////////////////////////////////////////////
// Function: CFDoCullCommand::Constructor
// Access: Published
// Description:
////////////////////////////////////////////////////////////////////
INLINE CFDoCullCommand::
CFDoCullCommand(PandaNode *scene) : _scene(scene) {
}
////////////////////////////////////////////////////////////////////
// Function: CFDoCullCommand::get_scene
// Access: Published
// Description:
////////////////////////////////////////////////////////////////////
INLINE PandaNode *CFDoCullCommand::
get_scene() const {
return _scene;
}