fix formatting

This commit is contained in:
Carter Anderson 2020-09-09 18:54:20 -07:00
parent 478fb0649a
commit 9d0abeb014

View File

@ -44,10 +44,7 @@ impl Scene {
} }
// TODO: move to AssetSaver when it is implemented // TODO: move to AssetSaver when it is implemented
pub fn serialize_ron( pub fn serialize_ron(&self, registry: &PropertyTypeRegistry) -> Result<String, ron::Error> {
&self,
registry: &PropertyTypeRegistry,
) -> Result<String, ron::Error> {
serialize_ron(SceneSerializer::new(self, registry)) serialize_ron(SceneSerializer::new(self, registry))
} }
} }