コード例 #1
0
ファイル: Rule.cs プロジェクト: tilemapjp/MapsforgeSharp
 internal virtual void AddRenderingInstruction(RenderInstruction renderInstruction)
 {
     this.renderInstructions.Add(renderInstruction);
 }
コード例 #2
0
 private bool IsVisible(RenderInstruction renderInstruction)
 {
     return(this.categories == null || renderInstruction.Category == null || this.categories.Contains(renderInstruction.Category));
 }