mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-21 07:11:16 +00:00
* Partial success in hiding 4786 warning spam. * Build out most of MxOmni::Destroy since it also touches the set
15 lines
194 B
C++
15 lines
194 B
C++
#include "mxatomidcounter.h"
|
|
|
|
// OFFSET: LEGO1 0x100ad7f0
|
|
void MxAtomIdCounter::Inc()
|
|
{
|
|
m_value++;
|
|
}
|
|
|
|
// OFFSET: LEGO1 0x100ad800
|
|
void MxAtomIdCounter::Dec()
|
|
{
|
|
if (m_value)
|
|
m_value--;
|
|
}
|