Пример #1
0
 public PlayingCardListAllocator(AllocationManager parent, PlaceholderWidget placeholder)
     : base(parent, placeholder)
 {
     animators = new List<PlayingCardAnimator>();
 }
Пример #2
0
 public RoleCardAllocator(AllocationManager parent, PlaceholderWidget placeholder, RoleCardAnimator animator)
     : base(parent, placeholder)
 {
     this.animator = animator;
 }
Пример #3
0
 public LifePointsCardAllocator(AllocationManager parent, PlaceholderWidget placeholder, CharacterCardAnimator animator)
     : base(parent, placeholder)
 {
     this.animator = animator;
 }