AssetEvents.h 462 B

123456789101112131415161718192021222324252627
  1. #include <Atomic/Core/Object.h>
  2. namespace ToolCore
  3. {
  4. EVENT(E_RESOURCEADDED, ResourceAdded)
  5. {
  6. PARAM(P_GUID, GUID); // string
  7. }
  8. EVENT(E_RESOURCEREMOVED, ResourceRemoved)
  9. {
  10. PARAM(P_GUID, GUID); // string
  11. }
  12. EVENT(E_ASSETIMPORTERROR, AssetImportError)
  13. {
  14. PARAM(P_PATH, Path); // string
  15. PARAM(P_GUID, GUID); // string
  16. PARAM(P_ERROR, Error); // string
  17. }
  18. }