- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
template<typename ProcessT, typename... Args>
requires (!std::derived_from<ProcessT, Process<ProcessT>>)
ProcessT& startProcess(processing::Processor& processor, Args&&... args)
{
processor.template getProcess<ProcessT>(processor.template attach<ProcessT>(args...));
}
template<typename ProcessT, typename... Args>
requires std::derived_from<ProcessT, Process<ProcessT>>
ProcessT& startProcess(processing::Processor& processor, Args&&... args)
{
processor.template getProcess<ProcessT>(processor.template attach<ProcessT>(
static_cast<T*>(this)->entity, args...));
}
kcalbCube 08.10.2022 06:12 # −1
guest6 08.10.2022 08:35 # −1
nyTuH 08.10.2022 12:03 # −1
kcalbCube 13.10.2022 21:48 # 0
guest6 13.10.2022 21:55 # 0
Jlou_6JlblKAHAX 13.10.2022 23:25 # 0