Files
2026-04-22 15:51:07 +02:00

10 lines
201 B
C++

#include "PlaylistUserOptionIntRange.h"
UPlaylistUserOptionIntRange::UPlaylistUserOptionIntRange() {
this->Min = 0;
this->Max = 0;
this->DefaultValue = 0;
this->IncrementValue = 1;
}