16 lines
206 B
C++
Executable file
16 lines
206 B
C++
Executable file
#include "DLCBase.h"
|
|
|
|
void UDLCBase::QueryAllDLC() {
|
|
}
|
|
|
|
bool UDLCBase::IsUnlocked() const {
|
|
return false;
|
|
}
|
|
|
|
bool UDLCBase::IsDLCUnLocked(UDLCBase* dlc) {
|
|
return false;
|
|
}
|
|
|
|
UDLCBase::UDLCBase() {
|
|
}
|
|
|