MCPcopy Create free account
hub / github.com/ZDoom/Raze / Run

Method Run

source/common/console/c_dispatch.cpp:120–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

118 TDeletingArray<FDelayedCommand *> delayedCommands;
119public:
120 void Run()
121 {
122 for (unsigned i = 0; i < delayedCommands.Size(); i++)
123 {
124 if (delayedCommands[i]->Tick())
125 {
126 delete delayedCommands[i];
127 delayedCommands.Delete(i);
128 i--;
129 }
130 }
131 }
132
133 void Clear()
134 {

Callers

nothing calls this directly

Calls 3

SizeMethod · 0.45
TickMethod · 0.45
DeleteMethod · 0.45

Tested by

no test coverage detected