PongCollectionCell.swift 269 B

123456789101112131415161718
  1. //
  2. // PongCell.swift
  3. // CockFight
  4. //
  5. // Created by Visoth Phon on 3/21/21.
  6. //
  7. import UIKit
  8. class PongCell: UICollectionViewCell {
  9. @IBOutlet weak var lblRound: UILabel!
  10. override func layoutSubviews() {
  11. super.layoutSubviews()
  12. }
  13. }