SymOntoClay  is an Independent DIY Game AI DSL.


  Warning logo Disclaimer: This is a purely experimental and unstable personal project, created by a single developer. Not intended for production use.
Please read the disclaimers carefully before use!

callPointer

Represents an asynchronous operation.

An instance of callPointer automatically creates after an asynchronous call.

Methods

Cancel

Cancels executing asynchronous operation.

@a.cancel();
@a = some_fun~~();
wait 1000;
@a.cancel();

You can see example here.