| Author: ABel 14.04.03 13:25:41
| reg_anim_begin() - Tells the system to start an animation sequence-list. It is used together with RegAnimAnimate and reg_anim_end.
Params: none
As defined in headers\animcomd.h:/* Anim Commands */ #define RB_UNRESERVED 1 // unreserved animation sequence, may fail if no available slots #define RB_RESERVED 2 // reserved animation sequence, should never fail #define REG_ANIM_BEGIN 1 #define reg_anim_begin() reg_anim_func(REG_ANIM_BEGIN, RB_UNRESERVED)
|