SceneObject.cs 590 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Xml;
  6. using System.Threading.Tasks;
  7. namespace ConsoleApplication
  8. {
  9. public interface SceneObject
  10. {
  11. Properties getProperties();
  12. void setProperties(Properties p);
  13. XmlElement getXMLTree();
  14. void setXMLDocumentRoot(ref XmlDocument xmldocument);
  15. XmlDocument getXMLDocumentRoot();
  16. void setObjectType(string objectType);
  17. void ConvertToYoobaUnits(int width, int height);
  18. object Clone();
  19. void setZindex(int z);
  20. }
  21. }