1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
--
--[[ CollectionsBook Singleton ]] --
--
ZO_COLLECTIONS_SYSTEM_NAME = "collections"
return collectionsSingleton
end
EVENT_MANAGER : RegisterForEvent ( "CollectionsBook_Singleton" , EVENT_COLLECTIBLE_REQUEST_BROWSE_TO , function ( eventId , ... ) self : BrowseToCollectible ( ... ) end )
EVENT_MANAGER : RegisterForEvent ( "CollectionsBook_Singleton" , EVENT_COLLECTIBLE_UPDATED , function ( eventId , ... ) self : OnCollectibleUpdated ( ... ) end )
EVENT_MANAGER : RegisterForEvent ( "CollectionsBook_Singleton" , EVENT_COLLECTION_UPDATED , function ( eventId , ... ) self : OnCollectionUpdated ( ... ) end )
end
end
end
end
return categoryName , collectibleName
end
|