Spaces:
Runtime error
Runtime error
File size: 268 Bytes
ce81a16 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
namespace Quantum
{
unsafe class EffectAreaSystem : SystemMainThread
{
public override void Update(Frame frame)
{
foreach (var pair in frame.Unsafe.GetComponentBlockIterator<EffectArea>())
{
pair.Component->Update(frame, pair.Entity);
}
}
}
}
|