Example #1
0
 public MinimapIcon(Entity entity, string texture, int size, Color color, MinimapRenderPriority prio)
 {
     this.Entity         = entity;
     this.Texture        = texture;
     this.Size           = size;
     this.color          = color;
     this.RenderPriority = prio;
 }
Example #2
0
 public MonsterMinimapIcon(Entity entity, string texture, int size, MinimapRenderPriority prio) : base(entity, texture, size, prio)
 {
 }
Example #3
0
 public MinimapIcon(Entity entity, string texture, int size, MinimapRenderPriority prio) : this(entity, texture, size, Color.White, prio)
 {
 }