コード例 #1
0
ファイル: Entity.java プロジェクト: macs672/rgb4
 protected void renderImpl(final Graphics graphicContext) {
   if (this.recursing) {
     for (final Entity child : this.childrenInOrder) {
       child.render(graphicContext);
     }
   }
 }