IntegerMan/angularIF

View on GitHub
src/app/text-rendering/entity-reference/entity-reference.component.ts

Summary

Maintainability
A
1 hr
Test Coverage
import {Component, Input, OnInit} from '@angular/core';
import {WorldEntity} from '../../engine/entities/world-entity';

@Component({
  selector: 'if-entity-reference',
  templateUrl: './entity-reference.component.html',
  styleUrls: ['./entity-reference.component.css']
})
export class EntityReferenceComponent implements OnInit {

  @Input()
  entity: WorldEntity;

  constructor() { }

  ngOnInit() {
  }

}