Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
WorkshopAuthor.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
12sealed class WorkshopAuthor: WorkshopCatalogue
13{
14 private void WorkshopAuthor();
15 private void ~WorkshopAuthor();
16
17 /*
18 \brief Get author name.
19 \return name of author
20 */
21 proto external string Name();
22 /*
23 \brief Is this author blocked for client
24 \return true if author is blocked
25 */
26 proto external bool IsBlocked();
27 /*
28 \brief Add author to clients block list for workshop - authors items will not be shown
29 \param pCallback Is script callback where you will receive result/error when request finishes
30 */
31 proto external void AddBlock(BackendCallback callback);
32 /*
33 \brief Remove author from clients block list for workshop
34 \param pCallback Is script callback where you will receive result/error when request finishes
35 */
36 proto external void RemoveBlock(BackendCallback callback);
37 /*
38 \brief Get locally downloaded workshop items of this author
39 \param items Array of Workshop Items
40 \return Current count of downloaded items from this author
41 */
42 proto external int GetOfflineItems(out notnull array<WorkshopItem> items);
43}
44