Initial commit

This commit is contained in:
2023-11-26 20:13:49 +01:00
commit dc2dc5c58b
820 changed files with 258269 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#include "xf/nulltransition.h"
XFNullTransition::XFNullTransition(interface::XFReactive * pBehavior)
: XFEvent(XFEvent::NullTransition, 0, pBehavior)
{
}
bool XFNullTransition::deleteAfterConsume() const
{
return true;
}