If i have many classes, how can I set a wildcard for register_touch instead of:
PHP Code:
register_touch( "sametype_class1", "player", "sametype_touch" );
register_touch( "sametype_class2", "player", "sametype_touch" );
register_touch( "sametype_class3", "player", "sametype_touch" );
...
register_touch( "sametype_classN", "player", "sametype_touch" );
I see that "*" or "" is for any class.
__________________