diff --git a/ChipBetting.xcodeproj/project.pbxproj b/ChipBetting.xcodeproj/project.pbxproj index a37eb2c..10bc24c 100644 --- a/ChipBetting.xcodeproj/project.pbxproj +++ b/ChipBetting.xcodeproj/project.pbxproj @@ -11,7 +11,6 @@ A3D06C2029579927009EDF65 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3D06C1F29579927009EDF65 /* ContentView.swift */; }; A3D06C2229579928009EDF65 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A3D06C2129579928009EDF65 /* Assets.xcassets */; }; A3D06C2529579928009EDF65 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A3D06C2429579928009EDF65 /* Preview Assets.xcassets */; }; - A3FF4F93297BAEE200FA9EEE /* PlayerCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3FF4F92297BAEE200FA9EEE /* PlayerCell.swift */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ @@ -20,7 +19,6 @@ A3D06C1F29579927009EDF65 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; A3D06C2129579928009EDF65 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; A3D06C2429579928009EDF65 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; - A3FF4F92297BAEE200FA9EEE /* PlayerCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PlayerCell.swift; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -55,7 +53,6 @@ children = ( A3D06C1D29579927009EDF65 /* ChipBettingApp.swift */, A3D06C1F29579927009EDF65 /* ContentView.swift */, - A3FF4F92297BAEE200FA9EEE /* PlayerCell.swift */, A3D06C2129579928009EDF65 /* Assets.xcassets */, A3D06C2329579928009EDF65 /* Preview Content */, ); @@ -140,7 +137,6 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A3FF4F93297BAEE200FA9EEE /* PlayerCell.swift in Sources */, A3D06C2029579927009EDF65 /* ContentView.swift in Sources */, A3D06C1E29579927009EDF65 /* ChipBettingApp.swift in Sources */, ); diff --git a/ChipBetting/PlayerCell.swift b/ChipBetting/PlayerCell.swift deleted file mode 100644 index 2279d53..0000000 --- a/ChipBetting/PlayerCell.swift +++ /dev/null @@ -1,20 +0,0 @@ -// -// PlayerCell.swift -// ChipBetting -// -// Created by HanGyeongjun on 2023/01/21. -// - -import SwiftUI - -struct PlayerCell: View { - var body: some View { - Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) - } -} - -struct PlayerCell_Previews: PreviewProvider { - static var previews: some View { - PlayerCell() - } -}