bool dead = false;
void Main() {
GoDeeper();
}
void GoDeeper() {
if (dead == true)
return;
GoDeeper();
}
For further actions, you may consider blocking this person and/or reporting abuse
bool dead = false;
void Main() {
GoDeeper();
}
void GoDeeper() {
if (dead == true)
return;
GoDeeper();
}
For further actions, you may consider blocking this person and/or reporting abuse
Game Dev Digest - The Newsletter On Unity Game Dev -
Juarez Júnior -
mohamed Tayel -
mohamed Tayel -
Top comments (0)