So I have a static class lets say its called Worker, and lets say I have a method inside it called Wait(float f) and its all public so I can acess it anywhere like so:
Worker.Wait(1000);
Now what I am wondering is there any way I can define some kind of unique special methods so I could just do it short like this:
Wait(1000);
(Without having it in the class I would use it in) ?