open_toontown_panda3d/panda/src/egg/eggPoint.I

36 lines
1.0 KiB
Plaintext

// Filename: eggPoint.I
// Created by: drose (15Dec99)
//
////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////
// Function: EggPoint::Constructor
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
INLINE EggPoint::
EggPoint(const string &name) : EggPrimitive(name) {
}
////////////////////////////////////////////////////////////////////
// Function: EggPoint::Copy constructor
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
INLINE EggPoint::
EggPoint(const EggPoint &copy) : EggPrimitive(copy) {
}
////////////////////////////////////////////////////////////////////
// Function: EggPoint::Copy assignment operator
// Access: Public
// Description:
////////////////////////////////////////////////////////////////////
INLINE EggPoint &EggPoint::
operator = (const EggPoint &copy) {
EggPrimitive::operator = (copy);
return *this;
}