mirror of
https://github.com/Relintai/godot-lportal.git
synced 2024-11-07 12:42:09 +01:00
11 lines
159 B
C++
11 lines
159 B
C++
#pragma once
|
|
|
|
class LSceneSaver
|
|
{
|
|
public:
|
|
bool SaveScene(Node * pNode, String szFilename);
|
|
|
|
private:
|
|
void SetOwnerRecursive(Node * pNode, Node * pOwner);
|
|
};
|