mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
25 lines
553 B
C++
25 lines
553 B
C++
#include "FortRotatingItemTileButton.h"
|
|
|
|
void UFortRotatingItemTileButton::StopRotating() {
|
|
}
|
|
|
|
|
|
void UFortRotatingItemTileButton::StartRotating() {
|
|
}
|
|
|
|
|
|
void UFortRotatingItemTileButton::SetTimeBeweenRotations(float InTimeBetweenRotations) {
|
|
}
|
|
|
|
void UFortRotatingItemTileButton::SetNeedsItemRotateAnimation(bool InNeedsItemRotationAnimation) {
|
|
}
|
|
|
|
void UFortRotatingItemTileButton::RotateToNextItem() {
|
|
}
|
|
|
|
UFortRotatingItemTileButton::UFortRotatingItemTileButton() {
|
|
this->TimeBetweenRotations = 1.00f;
|
|
this->bNeedsItemRotateAnimation = false;
|
|
}
|
|
|