'
' We register this as a plugin, by creating a new 
' TScriptPlugin instance, and fill it with the appropriate data
'

s:TScriptPlugin = New TScriptPlugin
s.SetName("Test Exporter")
s.SetFileExt("txt")
s.SetClass(PLUGIN_CLASS_EXPORTER)
	

'
' Called to export the file
'
Function ExportFile(file:String)

	Notify("exporter",file,False)

	For Local e:TEntity = EachIn Entities()
		print e.GetName()
	Next

EndFunction

