Exemplo n.º 1
0
 public FFComponent(FFEntity entity)
 {
     Entity = entity;
 }
Exemplo n.º 2
0
 public FFSpriteComponent(FFEntity entity, string resourceName) : base(entity)
 {
     this.resourceName = resourceName;
 }
Exemplo n.º 3
0
 public FFCollision(FFEntity entity, Tuple <int, int> vector) : base(entity)
 {
     this.Vector = vector;
 }
Exemplo n.º 4
0
 public FFRule(FFEntity entity) : base(entity)
 {
 }
Exemplo n.º 5
0
 public FFMovement(FFEntity entity) : base(entity)
 {
 }
Exemplo n.º 6
0
 public FFInput(FFEntity entity, Dictionary <string, Tuple <string, string, string> > KeyList) : base(entity)
 {
     this.KeyList = KeyList;
 }
Exemplo n.º 7
0
 public FFAudioComponent(FFEntity entity, string resourceName, bool playable) : base(entity)
 {
     this.resourceName = resourceName;
     this.playable     = playable;
 }