mirror of
https://github.com/muccc/WomoLIN.git
synced 2026-03-12 20:16:48 +01:00
13 lines
239 B
C++
13 lines
239 B
C++
#include "include/signal.h"
|
|
|
|
namespace womolin::signal
|
|
{
|
|
|
|
void SignalSetReset::UpdateUnit( std::string & key, std::string & value )
|
|
{
|
|
for (const auto & unit : units){
|
|
unit->UpdateUnitSignalSetReset(key, value);
|
|
}
|
|
}
|
|
}
|