main.cs 461 B

1234567891011121314151617181920
  1. //-----------------------------------------------------------------------------
  2. // Verve
  3. // Copyright (C) - Violent Tulip
  4. //-----------------------------------------------------------------------------
  5. function InitializeVPathEditor()
  6. {
  7. // Gui.
  8. exec( "./GUI/Profiles.cs" );
  9. exec( "./GUI/VPathEditor.gui" );
  10. // Scripts.
  11. exec( "./Scripts/Plugin.cs" );
  12. exec( "./Scripts/Editor.cs" );
  13. }
  14. function DestroyVPathEditor()
  15. {
  16. // Void.
  17. }