(id string, effectIndex int)
| 66 | } |
| 67 | |
| 68 | func (r *RootElem) AddEffectWork(id string, effectIndex int) { |
| 69 | r.EffectWorkQueue = append(r.EffectWorkQueue, &EffectWorkElem{Id: id, EffectIndex: effectIndex}) |
| 70 | } |
| 71 | |
| 72 | func MakeRoot() *RootElem { |
| 73 | return &RootElem{ |