mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-16 09:04:38 +00:00
Merge pull request #582 from tdev/RenderInstConstructor
RenderInstType default constructor improvements
This commit is contained in:
commit
e22d8156b4
1 changed files with 7 additions and 2 deletions
|
|
@ -65,12 +65,17 @@ protected:
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
RenderInstType( const RenderInstType &type = Invalid )
|
RenderInstType()
|
||||||
|
: mName( Invalid.mName )
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
RenderInstType( const RenderInstType &type )
|
||||||
: mName( type.mName )
|
: mName( type.mName )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
RenderInstType( const String &name )
|
RenderInstType( const String &name )
|
||||||
: mName( name )
|
: mName( name )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue