| 12345678910111213141516171819202122232425262728 |
- //
- // LNRoomApplySeatPanel.swift
- // Gami
- //
- // Created by OneeChan on 2026/3/11.
- //
- import Foundation
- import UIKit
- class LNRoomApplySeatPanel: LNPopupView {
- override init(frame: CGRect) {
- super.init(frame: frame)
-
- setupViews()
- }
-
- required init?(coder: NSCoder) {
- fatalError("init(coder:) has not been implemented")
- }
- }
- extension LNRoomApplySeatPanel {
- private func setupViews() {
-
- }
- }
|