mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
17 lines
278 B
C++
17 lines
278 B
C++
|
|
/* rid.cpp */
|
|
|
|
|
|
#include "rid.h"
|
|
|
|
#ifndef RID_HANDLES_ENABLED
|
|
RID_Data::~RID_Data() {
|
|
}
|
|
|
|
SafeRefCount RID_OwnerBase::refcount;
|
|
|
|
void RID_OwnerBase::init_rid() {
|
|
refcount.init();
|
|
}
|
|
#endif // not RID_HANDLES_ENABLED
|