| Ogre documentation | Contained in the Ogre distribution. |
Ogre::ResourceGroupManager
use Ogre; use Ogre::ResourceGroupManager; # (for now see examples/README.txt)
See the online API documentation athttp://www.ogre3d.org/docs/api/html/classOgre_1_1ResourceGroupManager.html
Note: this Perl binding is currently experimental and subject to API changes.
Returns
Parameter types
Returns
Returns
Returns
Scott Lanning <slanning@cpan.org>
For licensing information, see README.txt .
| Ogre documentation | Contained in the Ogre distribution. |
package Ogre::ResourceGroupManager; use strict; use warnings; # XXX: these aren't from enums, so not generated by genconsts.pl..... # (for now at least) require Exporter; @Ogre::ResourceGroupManager::ISA = qw(Exporter); our %EXPORT_TAGS = ( 'GroupName' => [ qw( DEFAULT_RESOURCE_GROUP_NAME INTERNAL_RESOURCE_GROUP_NAME AUTODETECT_RESOURCE_GROUP_NAME RESOURCE_SYSTEM_NUM_REFERENCE_COUNTS ) ], ); $EXPORT_TAGS{'all'} = [ map { @{ $EXPORT_TAGS{$_} } } keys %EXPORT_TAGS ]; our @EXPORT_OK = @{ $EXPORT_TAGS{'all'} }; our @EXPORT = (); 1; __END__