Files
Sun1602/SolarSlot/SCSlot.cpp
T
2022-10-26 12:25:11 +08:00

24 lines
427 B
C++

#include "stdafx.h"
#include "SCSlot.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
/*
void
SCSlot::Clear()
{
SetPos(255);
SetSlotIdx(SI_MAX);
SetNum(1);
}
void
SCSlot::Copy(SCSlot& IN slot)
{
SetPos(slot.GetPos());
SetSlotIdx(slot.GetSlotIdx());
SetNum(slot.GetNum());
}
*/