├── .gitignore ├── LICENSE ├── README.md ├── console_screen.png ├── fucklandlord.engine ├── CardType.cs ├── CardTypeName.cs ├── EngineTool.cs ├── EngineValues.cs ├── GameEngine.cs ├── Properties │ └── AssemblyInfo.cs └── fucklandlord.engine.csproj ├── fucklandlord.sln ├── fucklandlord.test ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── fucklandlord.test.csproj ├── fucklandlord.ui ├── Card.cs ├── CardTypeChoose.Designer.cs ├── CardTypeChoose.cs ├── CardTypeChoose.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── PlayCardEventHandler.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── 10_of_clubs.png │ ├── 10_of_diamonds.png │ ├── 10_of_hearts.png │ ├── 10_of_spades.png │ ├── 2_of_clubs.png │ ├── 2_of_diamonds.png │ ├── 2_of_hearts.png │ ├── 2_of_spades.png │ ├── 3_of_clubs.png │ ├── 3_of_diamonds.png │ ├── 3_of_hearts.png │ ├── 3_of_spades.png │ ├── 4_of_clubs.png │ ├── 4_of_diamonds.png │ ├── 4_of_hearts.png │ ├── 4_of_spades.png │ ├── 5_of_clubs.png │ ├── 5_of_diamonds.png │ ├── 5_of_hearts.png │ ├── 5_of_spades.png │ ├── 6_of_clubs.png │ ├── 6_of_diamonds.png │ ├── 6_of_hearts.png │ ├── 6_of_spades.png │ ├── 7_of_clubs.png │ ├── 7_of_diamonds.png │ ├── 7_of_hearts.png │ ├── 7_of_spades.png │ ├── 8_of_clubs.png │ ├── 8_of_diamonds.png │ ├── 8_of_hearts.png │ ├── 8_of_spades.png │ ├── 9_of_clubs.png │ ├── 9_of_diamonds.png │ ├── 9_of_hearts.png │ ├── 9_of_spades.png │ ├── ace_of_clubs.png │ ├── ace_of_diamonds.png │ ├── ace_of_hearts.png │ ├── ace_of_spades.png │ ├── back.jpg │ ├── black_joker.png │ ├── jack_of_clubs.png │ ├── jack_of_diamonds.png │ ├── jack_of_hearts.png │ ├── jack_of_spades.png │ ├── king_of_clubs.png │ ├── king_of_diamonds.png │ ├── king_of_hearts.png │ ├── king_of_spades.png │ ├── queen_of_clubs.png │ ├── queen_of_diamonds.png │ ├── queen_of_hearts.png │ ├── queen_of_spades.png │ └── red_joker.png ├── fucklandlord.ui.csproj ├── ucDesk.Designer.cs ├── ucDesk.cs ├── ucDesk.resx ├── ucLastCards.Designer.cs ├── ucLastCards.cs ├── ucMyBoard.Designer.cs ├── ucMyBoard.cs ├── ucMyBoard.resx ├── ucOtherBoard.Designer.cs ├── ucOtherBoard.cs └── ucOtherBoard.resx └── gui.screen.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/README.md -------------------------------------------------------------------------------- /console_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/console_screen.png -------------------------------------------------------------------------------- /fucklandlord.engine/CardType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.engine/CardType.cs -------------------------------------------------------------------------------- /fucklandlord.engine/CardTypeName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.engine/CardTypeName.cs -------------------------------------------------------------------------------- /fucklandlord.engine/EngineTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.engine/EngineTool.cs -------------------------------------------------------------------------------- /fucklandlord.engine/EngineValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.engine/EngineValues.cs -------------------------------------------------------------------------------- /fucklandlord.engine/GameEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.engine/GameEngine.cs -------------------------------------------------------------------------------- /fucklandlord.engine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.engine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /fucklandlord.engine/fucklandlord.engine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.engine/fucklandlord.engine.csproj -------------------------------------------------------------------------------- /fucklandlord.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.sln -------------------------------------------------------------------------------- /fucklandlord.test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.test/Program.cs -------------------------------------------------------------------------------- /fucklandlord.test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /fucklandlord.test/fucklandlord.test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.test/fucklandlord.test.csproj -------------------------------------------------------------------------------- /fucklandlord.ui/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Card.cs -------------------------------------------------------------------------------- /fucklandlord.ui/CardTypeChoose.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/CardTypeChoose.Designer.cs -------------------------------------------------------------------------------- /fucklandlord.ui/CardTypeChoose.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/CardTypeChoose.cs -------------------------------------------------------------------------------- /fucklandlord.ui/CardTypeChoose.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/CardTypeChoose.resx -------------------------------------------------------------------------------- /fucklandlord.ui/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/MainForm.Designer.cs -------------------------------------------------------------------------------- /fucklandlord.ui/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/MainForm.cs -------------------------------------------------------------------------------- /fucklandlord.ui/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/MainForm.resx -------------------------------------------------------------------------------- /fucklandlord.ui/PlayCardEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/PlayCardEventHandler.cs -------------------------------------------------------------------------------- /fucklandlord.ui/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Program.cs -------------------------------------------------------------------------------- /fucklandlord.ui/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /fucklandlord.ui/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /fucklandlord.ui/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Properties/Resources.resx -------------------------------------------------------------------------------- /fucklandlord.ui/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /fucklandlord.ui/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Properties/Settings.settings -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/10_of_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/10_of_clubs.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/10_of_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/10_of_diamonds.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/10_of_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/10_of_hearts.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/10_of_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/10_of_spades.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/2_of_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/2_of_clubs.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/2_of_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/2_of_diamonds.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/2_of_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/2_of_hearts.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/2_of_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/2_of_spades.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/3_of_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/3_of_clubs.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/3_of_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/3_of_diamonds.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/3_of_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/3_of_hearts.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/3_of_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/3_of_spades.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/4_of_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/4_of_clubs.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/4_of_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/4_of_diamonds.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/4_of_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/4_of_hearts.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/4_of_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/4_of_spades.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/5_of_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/5_of_clubs.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/5_of_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/5_of_diamonds.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/5_of_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/5_of_hearts.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/5_of_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/5_of_spades.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/6_of_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/6_of_clubs.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/6_of_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/6_of_diamonds.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/6_of_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/6_of_hearts.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/6_of_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/6_of_spades.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/7_of_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/7_of_clubs.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/7_of_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/7_of_diamonds.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/7_of_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/7_of_hearts.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/7_of_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/7_of_spades.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/8_of_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/8_of_clubs.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/8_of_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/8_of_diamonds.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/8_of_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/8_of_hearts.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/8_of_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/8_of_spades.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/9_of_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/9_of_clubs.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/9_of_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/9_of_diamonds.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/9_of_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/9_of_hearts.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/9_of_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/9_of_spades.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/ace_of_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/ace_of_clubs.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/ace_of_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/ace_of_diamonds.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/ace_of_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/ace_of_hearts.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/ace_of_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/ace_of_spades.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/back.jpg -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/black_joker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/black_joker.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/jack_of_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/jack_of_clubs.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/jack_of_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/jack_of_diamonds.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/jack_of_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/jack_of_hearts.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/jack_of_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/jack_of_spades.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/king_of_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/king_of_clubs.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/king_of_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/king_of_diamonds.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/king_of_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/king_of_hearts.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/king_of_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/king_of_spades.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/queen_of_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/queen_of_clubs.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/queen_of_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/queen_of_diamonds.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/queen_of_hearts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/queen_of_hearts.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/queen_of_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/queen_of_spades.png -------------------------------------------------------------------------------- /fucklandlord.ui/Resources/red_joker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/Resources/red_joker.png -------------------------------------------------------------------------------- /fucklandlord.ui/fucklandlord.ui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/fucklandlord.ui.csproj -------------------------------------------------------------------------------- /fucklandlord.ui/ucDesk.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/ucDesk.Designer.cs -------------------------------------------------------------------------------- /fucklandlord.ui/ucDesk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/ucDesk.cs -------------------------------------------------------------------------------- /fucklandlord.ui/ucDesk.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/ucDesk.resx -------------------------------------------------------------------------------- /fucklandlord.ui/ucLastCards.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/ucLastCards.Designer.cs -------------------------------------------------------------------------------- /fucklandlord.ui/ucLastCards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/ucLastCards.cs -------------------------------------------------------------------------------- /fucklandlord.ui/ucMyBoard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/ucMyBoard.Designer.cs -------------------------------------------------------------------------------- /fucklandlord.ui/ucMyBoard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/ucMyBoard.cs -------------------------------------------------------------------------------- /fucklandlord.ui/ucMyBoard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/ucMyBoard.resx -------------------------------------------------------------------------------- /fucklandlord.ui/ucOtherBoard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/ucOtherBoard.Designer.cs -------------------------------------------------------------------------------- /fucklandlord.ui/ucOtherBoard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/ucOtherBoard.cs -------------------------------------------------------------------------------- /fucklandlord.ui/ucOtherBoard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/fucklandlord.ui/ucOtherBoard.resx -------------------------------------------------------------------------------- /gui.screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherlockchou86/fucklandlord/HEAD/gui.screen.png --------------------------------------------------------------------------------