10 lines
214 B
C++
Executable file
10 lines
214 B
C++
Executable file
#include "ActiveMusicItem.h"
|
|
|
|
FActiveMusicItem::FActiveMusicItem() {
|
|
this->Sound = NULL;
|
|
this->StartingTime = 0.00f;
|
|
this->FadeDuration = 0.00f;
|
|
this->Looping = false;
|
|
this->Category = NULL;
|
|
}
|
|
|