isaacscript-common 15.4.0 → 15.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/isaacscript-common.lua +606 -301
- package/dist/src/callbackClasses.d.ts +101 -0
- package/dist/src/callbackClasses.d.ts.map +1 -0
- package/dist/src/callbackClasses.lua +502 -0
- package/dist/src/callbacks.d.ts +101 -200
- package/dist/src/callbacks.d.ts.map +1 -1
- package/dist/src/callbacks.lua +101 -300
- package/package.json +1 -1
- package/src/callbackClasses.ts +103 -0
- package/src/callbacks.ts +105 -200
package/dist/src/callbacks.d.ts
CHANGED
|
@@ -1,204 +1,105 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { PostAmbushFinished } from "./classes/callbacks/PostAmbushFinished";
|
|
3
|
-
import { PostAmbushStarted } from "./classes/callbacks/PostAmbushStarted";
|
|
4
|
-
import { PostBombExploded } from "./classes/callbacks/PostBombExploded";
|
|
5
|
-
import { PostBombInitLate } from "./classes/callbacks/PostBombInitLate";
|
|
6
|
-
import { PostBoneSwing } from "./classes/callbacks/PostBoneSwing";
|
|
7
|
-
import { PostCollectibleEmpty } from "./classes/callbacks/PostCollectibleEmpty";
|
|
8
|
-
import { PostCollectibleInitFirst } from "./classes/callbacks/PostCollectibleInitFirst";
|
|
9
|
-
import { PostCursedTeleport } from "./classes/callbacks/PostCursedTeleport";
|
|
10
|
-
import { PostCustomRevive } from "./classes/callbacks/PostCustomRevive";
|
|
11
|
-
import { PostDiceRoomActivated } from "./classes/callbacks/PostDiceRoomActivated";
|
|
12
|
-
import { PostDoorRender } from "./classes/callbacks/PostDoorRender";
|
|
13
|
-
import { PostDoorUpdate } from "./classes/callbacks/PostDoorUpdate";
|
|
14
|
-
import { PostEffectInitLate } from "./classes/callbacks/PostEffectInitLate";
|
|
15
|
-
import { PostEffectStateChanged } from "./classes/callbacks/PostEffectStateChanged";
|
|
16
|
-
import { PostEsauJr } from "./classes/callbacks/PostEsauJr";
|
|
17
|
-
import { PostFamiliarInitLate } from "./classes/callbacks/PostFamiliarInitLate";
|
|
18
|
-
import { PostFamiliarStateChanged } from "./classes/callbacks/PostFamiliarStateChanged";
|
|
19
|
-
import { PostFirstEsauJr } from "./classes/callbacks/PostFirstEsauJr";
|
|
20
|
-
import { PostFirstFlip } from "./classes/callbacks/PostFirstFlip";
|
|
21
|
-
import { PostFlip } from "./classes/callbacks/PostFlip";
|
|
22
|
-
import { PostGameStartedReordered } from "./classes/callbacks/PostGameStartedReordered";
|
|
23
|
-
import { PostGameStartedReorderedLast } from "./classes/callbacks/PostGameStartedReorderedLast";
|
|
24
|
-
import { PostGreedModeWave } from "./classes/callbacks/PostGreedModeWave";
|
|
25
|
-
import { PostGridEntityBroken } from "./classes/callbacks/PostGridEntityBroken";
|
|
26
|
-
import { PostGridEntityCollision } from "./classes/callbacks/PostGridEntityCollision";
|
|
27
|
-
import { PostGridEntityCustomBroken } from "./classes/callbacks/PostGridEntityCustomBroken";
|
|
28
|
-
import { PostGridEntityCustomCollision } from "./classes/callbacks/PostGridEntityCustomCollision";
|
|
29
|
-
import { PostGridEntityCustomInit } from "./classes/callbacks/PostGridEntityCustomInit";
|
|
30
|
-
import { PostGridEntityCustomRemove } from "./classes/callbacks/PostGridEntityCustomRemove";
|
|
31
|
-
import { PostGridEntityCustomRender } from "./classes/callbacks/PostGridEntityCustomRender";
|
|
32
|
-
import { PostGridEntityCustomStateChanged } from "./classes/callbacks/PostGridEntityCustomStateChanged";
|
|
33
|
-
import { PostGridEntityCustomUpdate } from "./classes/callbacks/PostGridEntityCustomUpdate";
|
|
34
|
-
import { PostGridEntityInit } from "./classes/callbacks/PostGridEntityInit";
|
|
35
|
-
import { PostGridEntityRemove } from "./classes/callbacks/PostGridEntityRemove";
|
|
36
|
-
import { PostGridEntityRender } from "./classes/callbacks/PostGridEntityRender";
|
|
37
|
-
import { PostGridEntityStateChanged } from "./classes/callbacks/PostGridEntityStateChanged";
|
|
38
|
-
import { PostGridEntityUpdate } from "./classes/callbacks/PostGridEntityUpdate";
|
|
39
|
-
import { PostHolyMantleRemoved } from "./classes/callbacks/PostHolyMantleRemoved";
|
|
40
|
-
import { PostItemDischarge } from "./classes/callbacks/PostItemDischarge";
|
|
41
|
-
import { PostItemPickup } from "./classes/callbacks/PostItemPickup";
|
|
42
|
-
import { PostKnifeInitLate } from "./classes/callbacks/PostKnifeInitLate";
|
|
43
|
-
import { PostLaserInitLate } from "./classes/callbacks/PostLaserInitLate";
|
|
44
|
-
import { PostNewLevelReordered } from "./classes/callbacks/PostNewLevelReordered";
|
|
45
|
-
import { PostNewRoomEarly } from "./classes/callbacks/PostNewRoomEarly";
|
|
46
|
-
import { PostNewRoomReordered } from "./classes/callbacks/PostNewRoomReordered";
|
|
47
|
-
import { PostNPCDeathFilter } from "./classes/callbacks/PostNPCDeathFilter";
|
|
48
|
-
import { PostNPCInitFilter } from "./classes/callbacks/PostNPCInitFilter";
|
|
49
|
-
import { PostNPCInitLate } from "./classes/callbacks/PostNPCInitLate";
|
|
50
|
-
import { PostNPCRenderFilter } from "./classes/callbacks/PostNPCRenderFilter";
|
|
51
|
-
import { PostNPCStateChanged } from "./classes/callbacks/PostNPCStateChanged";
|
|
52
|
-
import { PostNPCUpdateFilter } from "./classes/callbacks/PostNPCUpdateFilter";
|
|
53
|
-
import { PostPEffectUpdateReordered } from "./classes/callbacks/PostPEffectUpdateReordered";
|
|
54
|
-
import { PostPickupCollect } from "./classes/callbacks/PostPickupCollect";
|
|
55
|
-
import { PostPickupInitFirst } from "./classes/callbacks/PostPickupInitFirst";
|
|
56
|
-
import { PostPickupInitLate } from "./classes/callbacks/PostPickupInitLate";
|
|
57
|
-
import { PostPickupStateChanged } from "./classes/callbacks/PostPickupStateChanged";
|
|
58
|
-
import { PostPitRender } from "./classes/callbacks/PostPitRender";
|
|
59
|
-
import { PostPitUpdate } from "./classes/callbacks/PostPitUpdate";
|
|
60
|
-
import { PostPlayerChangeHealth } from "./classes/callbacks/PostPlayerChangeHealth";
|
|
61
|
-
import { PostPlayerChangeStat } from "./classes/callbacks/PostPlayerChangeStat";
|
|
62
|
-
import { PostPlayerChangeType } from "./classes/callbacks/PostPlayerChangeType";
|
|
63
|
-
import { PostPlayerCollectibleAdded } from "./classes/callbacks/PostPlayerCollectibleAdded";
|
|
64
|
-
import { PostPlayerCollectibleRemoved } from "./classes/callbacks/PostPlayerCollectibleRemoved";
|
|
65
|
-
import { PostPlayerFatalDamage } from "./classes/callbacks/PostPlayerFatalDamage";
|
|
66
|
-
import { PostPlayerInitFirst } from "./classes/callbacks/PostPlayerInitFirst";
|
|
67
|
-
import { PostPlayerInitLate } from "./classes/callbacks/PostPlayerInitLate";
|
|
68
|
-
import { PostPlayerRenderReordered } from "./classes/callbacks/PostPlayerRenderReordered";
|
|
69
|
-
import { PostPlayerUpdateReordered } from "./classes/callbacks/PostPlayerUpdateReordered";
|
|
70
|
-
import { PostPoopRender } from "./classes/callbacks/PostPoopRender";
|
|
71
|
-
import { PostPoopUpdate } from "./classes/callbacks/PostPoopUpdate";
|
|
72
|
-
import { PostPressurePlateRender } from "./classes/callbacks/PostPressurePlateRender";
|
|
73
|
-
import { PostPressurePlateUpdate } from "./classes/callbacks/PostPressurePlateUpdate";
|
|
74
|
-
import { PostProjectileInitLate } from "./classes/callbacks/PostProjectileInitLate";
|
|
75
|
-
import { PostPurchase } from "./classes/callbacks/PostPurchase";
|
|
76
|
-
import { PostRockRender } from "./classes/callbacks/PostRockRender";
|
|
77
|
-
import { PostRockUpdate } from "./classes/callbacks/PostRockUpdate";
|
|
78
|
-
import { PostRoomClearChanged } from "./classes/callbacks/PostRoomClearChanged";
|
|
79
|
-
import { PostSacrifice } from "./classes/callbacks/PostSacrifice";
|
|
80
|
-
import { PostSlotAnimationChanged } from "./classes/callbacks/PostSlotAnimationChanged";
|
|
81
|
-
import { PostSlotCollision } from "./classes/callbacks/PostSlotCollision";
|
|
82
|
-
import { PostSlotDestroyed } from "./classes/callbacks/PostSlotDestroyed";
|
|
83
|
-
import { PostSlotInit } from "./classes/callbacks/PostSlotInit";
|
|
84
|
-
import { PostSlotRender } from "./classes/callbacks/PostSlotRender";
|
|
85
|
-
import { PostSlotUpdate } from "./classes/callbacks/PostSlotUpdate";
|
|
86
|
-
import { PostSpikesRender } from "./classes/callbacks/PostSpikesRender";
|
|
87
|
-
import { PostSpikesUpdate } from "./classes/callbacks/PostSpikesUpdate";
|
|
88
|
-
import { PostTearInitLate } from "./classes/callbacks/PostTearInitLate";
|
|
89
|
-
import { PostTearInitVeryLate } from "./classes/callbacks/PostTearInitVeryLate";
|
|
90
|
-
import { PostTNTRender } from "./classes/callbacks/PostTNTRender";
|
|
91
|
-
import { PostTNTUpdate } from "./classes/callbacks/PostTNTUpdate";
|
|
92
|
-
import { PostTransformation } from "./classes/callbacks/PostTransformation";
|
|
93
|
-
import { PostTrinketBreak } from "./classes/callbacks/PostTrinketBreak";
|
|
94
|
-
import { PreBerserkDeath } from "./classes/callbacks/PreBerserkDeath";
|
|
95
|
-
import { PreCustomRevive } from "./classes/callbacks/PreCustomRevive";
|
|
96
|
-
import { PreGetPedestal } from "./classes/callbacks/PreGetPedestal";
|
|
97
|
-
import { PreItemPickup } from "./classes/callbacks/PreItemPickup";
|
|
98
|
-
import { PreNewLevel } from "./classes/callbacks/PreNewLevel";
|
|
99
|
-
import { PreNPCCollisionFilter } from "./classes/callbacks/PreNPCCollisionFilter";
|
|
100
|
-
import { PreNPCUpdateFilter } from "./classes/callbacks/PreNPCUpdateFilter";
|
|
1
|
+
import * as cc from "./callbackClasses";
|
|
101
2
|
declare const MOD_CALLBACK_CUSTOM_TO_CLASS: {
|
|
102
|
-
readonly 0: typeof EntityTakeDmgFilter;
|
|
103
|
-
readonly 1: typeof PostAmbushFinished;
|
|
104
|
-
readonly 2: typeof PostAmbushStarted;
|
|
105
|
-
readonly 3: typeof PostBombExploded;
|
|
106
|
-
readonly 4: typeof PostBombInitLate;
|
|
107
|
-
readonly 5: typeof PostBoneSwing;
|
|
108
|
-
readonly 6: typeof PostCollectibleEmpty;
|
|
109
|
-
readonly 7: typeof PostCollectibleInitFirst;
|
|
110
|
-
readonly 8: typeof PostCursedTeleport;
|
|
111
|
-
readonly 9: typeof PostCustomRevive;
|
|
112
|
-
readonly 10: typeof PostDiceRoomActivated;
|
|
113
|
-
readonly 11: typeof PostDoorRender;
|
|
114
|
-
readonly 12: typeof PostDoorUpdate;
|
|
115
|
-
readonly 13: typeof PostEffectInitLate;
|
|
116
|
-
readonly 14: typeof PostEffectStateChanged;
|
|
117
|
-
readonly 15: typeof PostEsauJr;
|
|
118
|
-
readonly 16: typeof PostFamiliarInitLate;
|
|
119
|
-
readonly 17: typeof PostFamiliarStateChanged;
|
|
120
|
-
readonly 19: typeof PostFirstFlip;
|
|
121
|
-
readonly 18: typeof PostFirstEsauJr;
|
|
122
|
-
readonly 20: typeof PostFlip;
|
|
123
|
-
readonly 21: typeof PostGameStartedReordered;
|
|
124
|
-
readonly 22: typeof PostGameStartedReorderedLast;
|
|
125
|
-
readonly 23: typeof PostGreedModeWave;
|
|
126
|
-
readonly 24: typeof PostGridEntityBroken;
|
|
127
|
-
readonly 25: typeof PostGridEntityCollision;
|
|
128
|
-
readonly 26: typeof PostGridEntityCustomBroken;
|
|
129
|
-
readonly 27: typeof PostGridEntityCustomCollision;
|
|
130
|
-
readonly 28: typeof PostGridEntityCustomInit;
|
|
131
|
-
readonly 29: typeof PostGridEntityCustomRemove;
|
|
132
|
-
readonly 30: typeof PostGridEntityCustomRender;
|
|
133
|
-
readonly 31: typeof PostGridEntityCustomStateChanged;
|
|
134
|
-
readonly 32: typeof PostGridEntityCustomUpdate;
|
|
135
|
-
readonly 33: typeof PostGridEntityInit;
|
|
136
|
-
readonly 34: typeof PostGridEntityRemove;
|
|
137
|
-
readonly 35: typeof PostGridEntityRender;
|
|
138
|
-
readonly 36: typeof PostGridEntityStateChanged;
|
|
139
|
-
readonly 37: typeof PostGridEntityUpdate;
|
|
140
|
-
readonly 38: typeof PostHolyMantleRemoved;
|
|
141
|
-
readonly 39: typeof PostItemDischarge;
|
|
142
|
-
readonly 40: typeof PostItemPickup;
|
|
143
|
-
readonly 41: typeof PostKnifeInitLate;
|
|
144
|
-
readonly 42: typeof PostLaserInitLate;
|
|
145
|
-
readonly 43: typeof PostNewLevelReordered;
|
|
146
|
-
readonly 44: typeof PostNewRoomEarly;
|
|
147
|
-
readonly 45: typeof PostNewRoomReordered;
|
|
148
|
-
readonly 46: typeof PostNPCDeathFilter;
|
|
149
|
-
readonly 47: typeof PostNPCInitFilter;
|
|
150
|
-
readonly 48: typeof PostNPCInitLate;
|
|
151
|
-
readonly 49: typeof PostNPCRenderFilter;
|
|
152
|
-
readonly 50: typeof PostNPCStateChanged;
|
|
153
|
-
readonly 51: typeof PostNPCUpdateFilter;
|
|
154
|
-
readonly 52: typeof PostPEffectUpdateReordered;
|
|
155
|
-
readonly 53: typeof PostPickupCollect;
|
|
156
|
-
readonly 54: typeof PostPickupInitFirst;
|
|
157
|
-
readonly 55: typeof PostPickupInitLate;
|
|
158
|
-
readonly 56: typeof PostPickupStateChanged;
|
|
159
|
-
readonly 57: typeof PostPitRender;
|
|
160
|
-
readonly 58: typeof PostPitUpdate;
|
|
161
|
-
readonly 59: typeof PostPlayerChangeHealth;
|
|
162
|
-
readonly 60: typeof PostPlayerChangeStat;
|
|
163
|
-
readonly 61: typeof PostPlayerChangeType;
|
|
164
|
-
readonly 62: typeof PostPlayerCollectibleAdded;
|
|
165
|
-
readonly 63: typeof PostPlayerCollectibleRemoved;
|
|
166
|
-
readonly 64: typeof PostPlayerFatalDamage;
|
|
167
|
-
readonly 65: typeof PostPlayerInitFirst;
|
|
168
|
-
readonly 66: typeof PostPlayerInitLate;
|
|
169
|
-
readonly 67: typeof PostPlayerRenderReordered;
|
|
170
|
-
readonly 68: typeof PostPlayerUpdateReordered;
|
|
171
|
-
readonly 69: typeof PostPoopRender;
|
|
172
|
-
readonly 70: typeof PostPoopUpdate;
|
|
173
|
-
readonly 71: typeof PostPressurePlateRender;
|
|
174
|
-
readonly 72: typeof PostPressurePlateUpdate;
|
|
175
|
-
readonly 73: typeof PostProjectileInitLate;
|
|
176
|
-
readonly 74: typeof PostPurchase;
|
|
177
|
-
readonly 75: typeof PostRockRender;
|
|
178
|
-
readonly 76: typeof PostRockUpdate;
|
|
179
|
-
readonly 77: typeof PostRoomClearChanged;
|
|
180
|
-
readonly 78: typeof PostSacrifice;
|
|
181
|
-
readonly 79: typeof PostSlotAnimationChanged;
|
|
182
|
-
readonly 80: typeof PostSlotCollision;
|
|
183
|
-
readonly 81: typeof PostSlotDestroyed;
|
|
184
|
-
readonly 82: typeof PostSlotInit;
|
|
185
|
-
readonly 83: typeof PostSlotRender;
|
|
186
|
-
readonly 84: typeof PostSlotUpdate;
|
|
187
|
-
readonly 85: typeof PostSpikesRender;
|
|
188
|
-
readonly 86: typeof PostSpikesUpdate;
|
|
189
|
-
readonly 87: typeof PostTearInitLate;
|
|
190
|
-
readonly 88: typeof PostTearInitVeryLate;
|
|
191
|
-
readonly 89: typeof PostTNTRender;
|
|
192
|
-
readonly 90: typeof PostTNTUpdate;
|
|
193
|
-
readonly 91: typeof PostTransformation;
|
|
194
|
-
readonly 92: typeof PostTrinketBreak;
|
|
195
|
-
readonly 93: typeof PreBerserkDeath;
|
|
196
|
-
readonly 94: typeof PreCustomRevive;
|
|
197
|
-
readonly 95: typeof PreGetPedestal;
|
|
198
|
-
readonly 96: typeof PreItemPickup;
|
|
199
|
-
readonly 97: typeof PreNewLevel;
|
|
200
|
-
readonly 98: typeof PreNPCCollisionFilter;
|
|
201
|
-
readonly 99: typeof PreNPCUpdateFilter;
|
|
3
|
+
readonly 0: typeof cc.EntityTakeDmgFilter;
|
|
4
|
+
readonly 1: typeof cc.PostAmbushFinished;
|
|
5
|
+
readonly 2: typeof cc.PostAmbushStarted;
|
|
6
|
+
readonly 3: typeof cc.PostBombExploded;
|
|
7
|
+
readonly 4: typeof cc.PostBombInitLate;
|
|
8
|
+
readonly 5: typeof cc.PostBoneSwing;
|
|
9
|
+
readonly 6: typeof cc.PostCollectibleEmpty;
|
|
10
|
+
readonly 7: typeof cc.PostCollectibleInitFirst;
|
|
11
|
+
readonly 8: typeof cc.PostCursedTeleport;
|
|
12
|
+
readonly 9: typeof cc.PostCustomRevive;
|
|
13
|
+
readonly 10: typeof cc.PostDiceRoomActivated;
|
|
14
|
+
readonly 11: typeof cc.PostDoorRender;
|
|
15
|
+
readonly 12: typeof cc.PostDoorUpdate;
|
|
16
|
+
readonly 13: typeof cc.PostEffectInitLate;
|
|
17
|
+
readonly 14: typeof cc.PostEffectStateChanged;
|
|
18
|
+
readonly 15: typeof cc.PostEsauJr;
|
|
19
|
+
readonly 16: typeof cc.PostFamiliarInitLate;
|
|
20
|
+
readonly 17: typeof cc.PostFamiliarStateChanged;
|
|
21
|
+
readonly 19: typeof cc.PostFirstFlip;
|
|
22
|
+
readonly 18: typeof cc.PostFirstEsauJr;
|
|
23
|
+
readonly 20: typeof cc.PostFlip;
|
|
24
|
+
readonly 21: typeof cc.PostGameStartedReordered;
|
|
25
|
+
readonly 22: typeof cc.PostGameStartedReorderedLast;
|
|
26
|
+
readonly 23: typeof cc.PostGreedModeWave;
|
|
27
|
+
readonly 24: typeof cc.PostGridEntityBroken;
|
|
28
|
+
readonly 25: typeof cc.PostGridEntityCollision;
|
|
29
|
+
readonly 26: typeof cc.PostGridEntityCustomBroken;
|
|
30
|
+
readonly 27: typeof cc.PostGridEntityCustomCollision;
|
|
31
|
+
readonly 28: typeof cc.PostGridEntityCustomInit;
|
|
32
|
+
readonly 29: typeof cc.PostGridEntityCustomRemove;
|
|
33
|
+
readonly 30: typeof cc.PostGridEntityCustomRender;
|
|
34
|
+
readonly 31: typeof cc.PostGridEntityCustomStateChanged;
|
|
35
|
+
readonly 32: typeof cc.PostGridEntityCustomUpdate;
|
|
36
|
+
readonly 33: typeof cc.PostGridEntityInit;
|
|
37
|
+
readonly 34: typeof cc.PostGridEntityRemove;
|
|
38
|
+
readonly 35: typeof cc.PostGridEntityRender;
|
|
39
|
+
readonly 36: typeof cc.PostGridEntityStateChanged;
|
|
40
|
+
readonly 37: typeof cc.PostGridEntityUpdate;
|
|
41
|
+
readonly 38: typeof cc.PostHolyMantleRemoved;
|
|
42
|
+
readonly 39: typeof cc.PostItemDischarge;
|
|
43
|
+
readonly 40: typeof cc.PostItemPickup;
|
|
44
|
+
readonly 41: typeof cc.PostKnifeInitLate;
|
|
45
|
+
readonly 42: typeof cc.PostLaserInitLate;
|
|
46
|
+
readonly 43: typeof cc.PostNewLevelReordered;
|
|
47
|
+
readonly 44: typeof cc.PostNewRoomEarly;
|
|
48
|
+
readonly 45: typeof cc.PostNewRoomReordered;
|
|
49
|
+
readonly 46: typeof cc.PostNPCDeathFilter;
|
|
50
|
+
readonly 47: typeof cc.PostNPCInitFilter;
|
|
51
|
+
readonly 48: typeof cc.PostNPCInitLate;
|
|
52
|
+
readonly 49: typeof cc.PostNPCRenderFilter;
|
|
53
|
+
readonly 50: typeof cc.PostNPCStateChanged;
|
|
54
|
+
readonly 51: typeof cc.PostNPCUpdateFilter;
|
|
55
|
+
readonly 52: typeof cc.PostPEffectUpdateReordered;
|
|
56
|
+
readonly 53: typeof cc.PostPickupCollect;
|
|
57
|
+
readonly 54: typeof cc.PostPickupInitFirst;
|
|
58
|
+
readonly 55: typeof cc.PostPickupInitLate;
|
|
59
|
+
readonly 56: typeof cc.PostPickupStateChanged;
|
|
60
|
+
readonly 57: typeof cc.PostPitRender;
|
|
61
|
+
readonly 58: typeof cc.PostPitUpdate;
|
|
62
|
+
readonly 59: typeof cc.PostPlayerChangeHealth;
|
|
63
|
+
readonly 60: typeof cc.PostPlayerChangeStat;
|
|
64
|
+
readonly 61: typeof cc.PostPlayerChangeType;
|
|
65
|
+
readonly 62: typeof cc.PostPlayerCollectibleAdded;
|
|
66
|
+
readonly 63: typeof cc.PostPlayerCollectibleRemoved;
|
|
67
|
+
readonly 64: typeof cc.PostPlayerFatalDamage;
|
|
68
|
+
readonly 65: typeof cc.PostPlayerInitFirst;
|
|
69
|
+
readonly 66: typeof cc.PostPlayerInitLate;
|
|
70
|
+
readonly 67: typeof cc.PostPlayerRenderReordered;
|
|
71
|
+
readonly 68: typeof cc.PostPlayerUpdateReordered;
|
|
72
|
+
readonly 69: typeof cc.PostPoopRender;
|
|
73
|
+
readonly 70: typeof cc.PostPoopUpdate;
|
|
74
|
+
readonly 71: typeof cc.PostPressurePlateRender;
|
|
75
|
+
readonly 72: typeof cc.PostPressurePlateUpdate;
|
|
76
|
+
readonly 73: typeof cc.PostProjectileInitLate;
|
|
77
|
+
readonly 74: typeof cc.PostPurchase;
|
|
78
|
+
readonly 75: typeof cc.PostRockRender;
|
|
79
|
+
readonly 76: typeof cc.PostRockUpdate;
|
|
80
|
+
readonly 77: typeof cc.PostRoomClearChanged;
|
|
81
|
+
readonly 78: typeof cc.PostSacrifice;
|
|
82
|
+
readonly 79: typeof cc.PostSlotAnimationChanged;
|
|
83
|
+
readonly 80: typeof cc.PostSlotCollision;
|
|
84
|
+
readonly 81: typeof cc.PostSlotDestroyed;
|
|
85
|
+
readonly 82: typeof cc.PostSlotInit;
|
|
86
|
+
readonly 83: typeof cc.PostSlotRender;
|
|
87
|
+
readonly 84: typeof cc.PostSlotUpdate;
|
|
88
|
+
readonly 85: typeof cc.PostSpikesRender;
|
|
89
|
+
readonly 86: typeof cc.PostSpikesUpdate;
|
|
90
|
+
readonly 87: typeof cc.PostTearInitLate;
|
|
91
|
+
readonly 88: typeof cc.PostTearInitVeryLate;
|
|
92
|
+
readonly 89: typeof cc.PostTNTRender;
|
|
93
|
+
readonly 90: typeof cc.PostTNTUpdate;
|
|
94
|
+
readonly 91: typeof cc.PostTransformation;
|
|
95
|
+
readonly 92: typeof cc.PostTrinketBreak;
|
|
96
|
+
readonly 93: typeof cc.PreBerserkDeath;
|
|
97
|
+
readonly 94: typeof cc.PreCustomRevive;
|
|
98
|
+
readonly 95: typeof cc.PreGetPedestal;
|
|
99
|
+
readonly 96: typeof cc.PreItemPickup;
|
|
100
|
+
readonly 97: typeof cc.PreNewLevel;
|
|
101
|
+
readonly 98: typeof cc.PreNPCCollisionFilter;
|
|
102
|
+
readonly 99: typeof cc.PreNPCUpdateFilter;
|
|
202
103
|
};
|
|
203
104
|
export declare type ModCallbackCustomToClass = {
|
|
204
105
|
readonly [key in keyof typeof MOD_CALLBACK_CUSTOM_TO_CLASS]: InstanceType<typeof MOD_CALLBACK_CUSTOM_TO_CLASS[key]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"callbacks.d.ts","sourceRoot":"","sources":["../../src/callbacks.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"callbacks.d.ts","sourceRoot":"","sources":["../../src/callbacks.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,mBAAmB,CAAC;AAKxC,QAAA,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkHvB,CAAC;AAEZ,oBAAY,wBAAwB,GAAG;IACrC,QAAQ,EAAE,GAAG,IAAI,MAAM,OAAO,4BAA4B,GAAG,YAAY,CACvE,OAAO,4BAA4B,CAAC,GAAG,CAAC,CACzC;CACF,CAAC;AAEF,wBAAgB,YAAY,IAAI,wBAAwB,CASvD"}
|