├── apps ├── ginrummy │ ├── lib │ │ ├── src │ │ │ └── lib.rs │ │ └── Cargo.toml │ ├── src │ │ ├── main.rs │ │ └── lib.rs │ ├── assets │ │ ├── pix │ │ │ ├── cursor.png │ │ │ └── symbols.png │ │ └── poker │ │ │ ├── back.txt │ │ │ ├── 53.txt │ │ │ ├── 54.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ ├── 19.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 21.txt │ │ │ ├── 22.txt │ │ │ ├── 23.txt │ │ │ ├── 24.txt │ │ │ ├── 25.txt │ │ │ ├── 26.txt │ │ │ ├── 27.txt │ │ │ ├── 28.txt │ │ │ ├── 29.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 31.txt │ │ │ ├── 32.txt │ │ │ ├── 33.txt │ │ │ ├── 34.txt │ │ │ ├── 35.txt │ │ │ ├── 36.txt │ │ │ ├── 37.txt │ │ │ ├── 38.txt │ │ │ ├── 39.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 41.txt │ │ │ ├── 42.txt │ │ │ ├── 43.txt │ │ │ ├── 44.txt │ │ │ ├── 45.txt │ │ │ ├── 46.txt │ │ │ ├── 47.txt │ │ │ ├── 48.txt │ │ │ ├── 49.txt │ │ │ ├── 5.txt │ │ │ ├── 50.txt │ │ │ ├── 51.txt │ │ │ ├── 52.txt │ │ │ ├── 6.txt │ │ │ ├── 7.txt │ │ │ ├── 8.txt │ │ │ ├── 9.txt │ │ │ ├── 14.pix │ │ │ ├── 27.pix │ │ │ ├── 40.pix │ │ │ ├── 5.pix │ │ │ ├── 6.pix │ │ │ ├── 7.pix │ │ │ ├── 8.pix │ │ │ ├── 9.pix │ │ │ ├── 10.pix │ │ │ ├── 11.pix │ │ │ ├── 12.pix │ │ │ ├── 13.pix │ │ │ ├── 15.pix │ │ │ ├── 16.pix │ │ │ ├── 17.pix │ │ │ ├── 18.pix │ │ │ ├── 19.pix │ │ │ ├── 20.pix │ │ │ ├── 21.pix │ │ │ ├── 22.pix │ │ │ ├── 23.pix │ │ │ ├── 24.pix │ │ │ ├── 25.pix │ │ │ ├── 26.pix │ │ │ ├── 28.pix │ │ │ ├── 29.pix │ │ │ ├── 30.pix │ │ │ ├── 31.pix │ │ │ └── 32.pix │ └── build.rs ├── city │ ├── src │ │ ├── main.rs │ │ └── lib.rs │ ├── assets │ │ ├── cc1.txt │ │ ├── cc11.txt │ │ ├── cc13.txt │ │ ├── cc15.txt │ │ ├── cc5.txt │ │ ├── cc7.txt │ │ ├── cc9.txt │ │ ├── cc0.txt │ │ ├── cc10.txt │ │ ├── cc12.txt │ │ ├── cc14.txt │ │ ├── cc2.txt │ │ ├── cc3.txt │ │ ├── cc4.txt │ │ ├── cc6.txt │ │ ├── cc8.txt │ │ ├── cc16.txt │ │ └── pix │ │ │ ├── cursor.png │ │ │ └── symbols.png │ └── build.rs ├── poker │ ├── src │ │ ├── main.rs │ │ └── lib.rs │ ├── assets │ │ ├── pix │ │ │ ├── cursor.png │ │ │ └── symbols.png │ │ └── poker │ │ │ ├── back.txt │ │ │ ├── 53.txt │ │ │ ├── 54.txt │ │ │ ├── 1.txt │ │ │ ├── 2.txt │ │ │ ├── 3.txt │ │ │ ├── 4.txt │ │ │ ├── 5.txt │ │ │ ├── 6.txt │ │ │ ├── 7.txt │ │ │ ├── 8.txt │ │ │ ├── 9.txt │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ ├── 19.txt │ │ │ ├── 20.txt │ │ │ ├── 21.txt │ │ │ ├── 22.txt │ │ │ ├── 23.txt │ │ │ ├── 24.txt │ │ │ ├── 25.txt │ │ │ ├── 26.txt │ │ │ ├── 27.txt │ │ │ ├── 28.txt │ │ │ ├── 29.txt │ │ │ ├── 30.txt │ │ │ ├── 31.txt │ │ │ ├── 32.txt │ │ │ ├── 33.txt │ │ │ ├── 34.txt │ │ │ ├── 35.txt │ │ │ ├── 36.txt │ │ │ ├── 37.txt │ │ │ ├── 38.txt │ │ │ ├── 39.txt │ │ │ ├── 40.txt │ │ │ ├── 41.txt │ │ │ ├── 42.txt │ │ │ ├── 43.txt │ │ │ ├── 44.txt │ │ │ ├── 45.txt │ │ │ ├── 46.txt │ │ │ ├── 47.txt │ │ │ ├── 48.txt │ │ │ ├── 49.txt │ │ │ ├── 50.txt │ │ │ ├── 51.txt │ │ │ ├── 52.txt │ │ │ ├── 10.pix │ │ │ ├── 11.pix │ │ │ ├── 12.pix │ │ │ ├── 13.pix │ │ │ ├── 14.pix │ │ │ ├── 15.pix │ │ │ ├── 16.pix │ │ │ ├── 17.pix │ │ │ ├── 18.pix │ │ │ ├── 19.pix │ │ │ ├── 20.pix │ │ │ ├── 21.pix │ │ │ ├── 22.pix │ │ │ ├── 23.pix │ │ │ ├── 24.pix │ │ │ ├── 25.pix │ │ │ ├── 26.pix │ │ │ ├── 27.pix │ │ │ ├── 28.pix │ │ │ ├── 29.pix │ │ │ ├── 30.pix │ │ │ ├── 31.pix │ │ │ ├── 32.pix │ │ │ ├── 33.pix │ │ │ ├── 34.pix │ │ │ ├── 35.pix │ │ │ ├── 36.pix │ │ │ ├── 37.pix │ │ │ ├── 38.pix │ │ │ ├── 39.pix │ │ │ ├── 40.pix │ │ │ ├── 41.pix │ │ │ ├── 42.pix │ │ │ ├── 43.pix │ │ │ ├── 44.pix │ │ │ ├── 45.pix │ │ │ ├── 46.pix │ │ │ ├── 47.pix │ │ │ ├── 48.pix │ │ │ ├── 49.pix │ │ │ ├── 5.pix │ │ │ ├── 50.pix │ │ │ ├── 51.pix │ │ │ ├── 6.pix │ │ │ ├── 7.pix │ │ │ ├── 8.pix │ │ │ └── 9.pix │ ├── build.rs │ ├── wasm │ │ ├── Makefile │ │ └── index.html │ ├── lib │ │ └── Cargo.toml │ ├── texas │ │ └── Cargo.toml │ └── ffi │ │ ├── cbindgen.toml │ │ └── cbindgen_py.toml ├── snake │ ├── src │ │ ├── main.rs │ │ └── lib.rs │ ├── assets │ │ ├── pix │ │ │ ├── cursor.png │ │ │ └── symbols.png │ │ └── sdq │ │ │ └── dance.ssf │ └── build.rs ├── tetris │ ├── src │ │ ├── main.rs │ │ └── lib.rs │ ├── lib │ │ ├── src │ │ │ └── lib.rs │ │ └── Cargo.toml │ ├── assets │ │ ├── back.mp3 │ │ └── pix │ │ │ ├── cursor.png │ │ │ └── symbols.png │ └── build.rs ├── ui_demo │ ├── src │ │ ├── main.rs │ │ └── lib.rs │ ├── assets │ │ ├── pix │ │ │ ├── cursor.png │ │ │ ├── symbols.png │ │ │ └── symbols_tui.png │ │ └── sdq │ │ │ └── dance.ssf │ └── build.rs ├── colorblk │ ├── src │ │ ├── main.rs │ │ └── lib.rs │ ├── assets │ │ ├── cc1.txt │ │ ├── cc5.txt │ │ ├── cc7.txt │ │ ├── cc9.txt │ │ ├── cc11.txt │ │ ├── cc13.txt │ │ ├── cc15.txt │ │ ├── cc2.txt │ │ ├── cc3.txt │ │ ├── cc4.txt │ │ ├── cc6.txt │ │ ├── cc8.txt │ │ ├── 1.ssf │ │ ├── cc0.txt │ │ ├── cc10.txt │ │ ├── cc12.txt │ │ ├── cc14.txt │ │ ├── cc16.txt │ │ ├── pix │ │ │ ├── cursor.png │ │ │ └── symbols.png │ │ └── poker │ │ │ ├── back.txt │ │ │ ├── 53.txt │ │ │ ├── 54.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ ├── 19.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 21.txt │ │ │ ├── 22.txt │ │ │ ├── 23.txt │ │ │ ├── 24.txt │ │ │ ├── 25.txt │ │ │ ├── 26.txt │ │ │ ├── 27.txt │ │ │ ├── 28.txt │ │ │ ├── 29.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 31.txt │ │ │ ├── 32.txt │ │ │ ├── 33.txt │ │ │ ├── 34.txt │ │ │ ├── 35.txt │ │ │ ├── 36.txt │ │ │ ├── 37.txt │ │ │ ├── 38.txt │ │ │ ├── 39.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 41.txt │ │ │ ├── 42.txt │ │ │ ├── 43.txt │ │ │ ├── 44.txt │ │ │ ├── 45.txt │ │ │ ├── 46.txt │ │ │ ├── 47.txt │ │ │ ├── 48.txt │ │ │ ├── 49.txt │ │ │ ├── 5.txt │ │ │ ├── 50.txt │ │ │ ├── 51.txt │ │ │ ├── 52.txt │ │ │ ├── 6.txt │ │ │ ├── 7.txt │ │ │ ├── 8.txt │ │ │ ├── 9.txt │ │ │ ├── 14.pix │ │ │ ├── 27.pix │ │ │ ├── 40.pix │ │ │ ├── 5.pix │ │ │ ├── 6.pix │ │ │ ├── 7.pix │ │ │ ├── 8.pix │ │ │ ├── 9.pix │ │ │ ├── 10.pix │ │ │ ├── 11.pix │ │ │ ├── 12.pix │ │ │ ├── 13.pix │ │ │ ├── 15.pix │ │ │ ├── 16.pix │ │ │ ├── 17.pix │ │ │ ├── 18.pix │ │ │ ├── 19.pix │ │ │ ├── 20.pix │ │ │ ├── 21.pix │ │ │ ├── 22.pix │ │ │ ├── 23.pix │ │ │ ├── 24.pix │ │ │ ├── 25.pix │ │ │ ├── 26.pix │ │ │ ├── 28.pix │ │ │ ├── 29.pix │ │ │ ├── 30.pix │ │ │ ├── 31.pix │ │ │ ├── 32.pix │ │ │ ├── 33.pix │ │ │ ├── 34.pix │ │ │ ├── 35.pix │ │ │ ├── 36.pix │ │ │ ├── 37.pix │ │ │ ├── 38.pix │ │ │ ├── 39.pix │ │ │ ├── 41.pix │ │ │ ├── 42.pix │ │ │ ├── 43.pix │ │ │ ├── 44.pix │ │ │ ├── 45.pix │ │ │ ├── 46.pix │ │ │ ├── 47.pix │ │ │ ├── 48.pix │ │ │ ├── 49.pix │ │ │ ├── 50.pix │ │ │ └── 51.pix │ ├── wasm │ │ ├── Makefile │ │ └── index.html │ ├── ffi │ │ ├── python │ │ │ └── pffi.h │ │ ├── cbindgen.toml │ │ ├── cbindgen_py.toml │ │ └── Cargo.toml │ └── lib │ │ └── Cargo.toml ├── template │ ├── src │ │ ├── main.rs │ │ └── lib.rs │ ├── assets │ │ ├── 1.ssf │ │ ├── pix │ │ │ ├── cursor.png │ │ │ └── symbols.png │ │ └── poker │ │ │ ├── back.txt │ │ │ ├── 53.txt │ │ │ ├── 54.txt │ │ │ ├── 1.txt │ │ │ ├── 10.txt │ │ │ ├── 11.txt │ │ │ ├── 12.txt │ │ │ ├── 13.txt │ │ │ ├── 14.txt │ │ │ ├── 15.txt │ │ │ ├── 16.txt │ │ │ ├── 17.txt │ │ │ ├── 18.txt │ │ │ ├── 19.txt │ │ │ ├── 2.txt │ │ │ ├── 20.txt │ │ │ ├── 21.txt │ │ │ ├── 22.txt │ │ │ ├── 23.txt │ │ │ ├── 24.txt │ │ │ ├── 25.txt │ │ │ ├── 26.txt │ │ │ ├── 27.txt │ │ │ ├── 28.txt │ │ │ ├── 29.txt │ │ │ ├── 3.txt │ │ │ ├── 30.txt │ │ │ ├── 31.txt │ │ │ ├── 32.txt │ │ │ ├── 33.txt │ │ │ ├── 34.txt │ │ │ ├── 35.txt │ │ │ ├── 36.txt │ │ │ ├── 37.txt │ │ │ ├── 38.txt │ │ │ ├── 39.txt │ │ │ ├── 4.txt │ │ │ ├── 40.txt │ │ │ ├── 41.txt │ │ │ ├── 42.txt │ │ │ ├── 43.txt │ │ │ ├── 44.txt │ │ │ ├── 45.txt │ │ │ ├── 46.txt │ │ │ ├── 47.txt │ │ │ ├── 48.txt │ │ │ ├── 49.txt │ │ │ ├── 5.txt │ │ │ ├── 50.txt │ │ │ ├── 51.txt │ │ │ ├── 52.txt │ │ │ ├── 6.txt │ │ │ ├── 7.txt │ │ │ ├── 8.txt │ │ │ ├── 9.txt │ │ │ ├── 14.pix │ │ │ ├── 27.pix │ │ │ ├── 40.pix │ │ │ ├── 5.pix │ │ │ ├── 6.pix │ │ │ ├── 7.pix │ │ │ ├── 8.pix │ │ │ └── 9.pix │ ├── build.rs │ ├── wasm │ │ ├── Makefile │ │ └── index.html │ ├── lib │ │ └── Cargo.toml │ ├── stand-alone │ │ └── LibCargo.toml.temp │ └── ffi │ │ ├── python │ │ └── pffi.h │ │ ├── cbindgen.toml │ │ ├── cbindgen_py.toml │ │ └── Cargo.toml ├── tower │ ├── src │ │ ├── lib.rs │ │ └── main.rs │ ├── assets │ │ └── pix │ │ │ ├── cursor.png │ │ │ ├── symbols.png │ │ │ ├── tower2.pix │ │ │ ├── block.pix │ │ │ ├── tower3.pix │ │ │ └── tower1.pix │ ├── build.rs │ └── lib │ │ └── Cargo.toml ├── petview │ ├── src │ │ ├── lib.rs │ │ └── main.rs │ ├── assets │ │ ├── 1.ssf │ │ └── pix │ │ │ ├── cursor.png │ │ │ └── symbols.png │ ├── build.rs │ ├── wasm │ │ ├── Makefile │ │ └── index.html │ └── lib │ │ └── Cargo.toml └── palette │ ├── src │ ├── lib.rs │ └── main.rs │ ├── build.rs │ ├── wasm │ ├── Makefile │ └── index.html │ ├── lib │ └── Cargo.toml │ └── ffi │ ├── python │ └── pffi.h │ ├── cbindgen.toml │ ├── cbindgen_py.toml │ └── Cargo.toml ├── tools ├── ssf │ ├── src │ │ ├── main.rs │ │ └── lib.rs │ └── build.rs └── edit │ └── build.rs ├── assets ├── a.png ├── lion.png ├── pixel.png ├── pixel8.ttf ├── sdq │ ├── 1.ssf │ ├── 2.ssf │ ├── ball.ssf │ ├── cube.ssf │ ├── fire.gif │ ├── fire.ssf │ ├── run.gif │ ├── dance.gif │ ├── dance.ssf │ ├── fire2.gif │ └── heart.gif ├── pix │ ├── c64.png │ ├── room.png │ ├── cursor.png │ ├── petscii.png │ ├── symbols.png │ ├── symbols_tui.png │ ├── tower2.pix │ ├── block.pix │ ├── tower3.pix │ └── tower1.pix └── cp437ibm8x8.ttf ├── doc ├── faq.md └── todo.md ├── screen-shot ├── a.png ├── demo.png ├── lion.png ├── logo.png ├── ginrummy.png ├── palette.gif ├── petview.jpg ├── redblack.png ├── snake_sdl.gif ├── tedit_sdl.png ├── tedit_term.png ├── tetris_sdl.gif ├── tetris_term.gif ├── tetris_web.gif └── tower_sdl.gif ├── symbols ├── c64e1.png ├── c64e2.png ├── c64l.png ├── c64u.png ├── symbols.png └── tui_fix │ ├── 0053.png │ ├── 0177.png │ ├── 0178.png │ ├── 0198.png │ ├── 0199.png │ └── 0208.png ├── test ├── sdl │ ├── test.png │ └── Cargo.toml ├── sym_test.png ├── gltest │ ├── to.png │ ├── from.png │ └── Cargo.toml ├── gltest2 │ ├── output.png │ ├── texture1.png │ ├── texture2.png │ └── Cargo.toml ├── ttest │ └── Cargo.toml ├── trand.c └── trand.rs └── web-templates └── index.html /apps/ginrummy/lib/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod cards; 2 | -------------------------------------------------------------------------------- /tools/ssf/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | ssf::run() 3 | } -------------------------------------------------------------------------------- /apps/city/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | city::run() 3 | } 4 | -------------------------------------------------------------------------------- /apps/poker/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | poker::run() 3 | } 4 | -------------------------------------------------------------------------------- /apps/snake/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | snake::run() 3 | } 4 | -------------------------------------------------------------------------------- /apps/tetris/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | tetris::run() 3 | } 4 | -------------------------------------------------------------------------------- /apps/ui_demo/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | ui_demo::run() 3 | } -------------------------------------------------------------------------------- /apps/colorblk/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | colorblk::run() 3 | } 4 | -------------------------------------------------------------------------------- /apps/ginrummy/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | ginrummy::run() 3 | } 4 | -------------------------------------------------------------------------------- /apps/template/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | template::run() 3 | } 4 | -------------------------------------------------------------------------------- /apps/poker/src/lib.rs: -------------------------------------------------------------------------------- 1 | use rust_pixel::pixel_game; 2 | pixel_game!(Poker); 3 | -------------------------------------------------------------------------------- /apps/tower/src/lib.rs: -------------------------------------------------------------------------------- 1 | use rust_pixel::pixel_game; 2 | pixel_game!(Tower); 3 | -------------------------------------------------------------------------------- /apps/ui_demo/src/lib.rs: -------------------------------------------------------------------------------- 1 | use rust_pixel::pixel_game; 2 | pixel_game!(UiDemo); -------------------------------------------------------------------------------- /assets/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/a.png -------------------------------------------------------------------------------- /doc/faq.md: -------------------------------------------------------------------------------- 1 | # How to install on microsoft Windows? 2 | use wsl2 with win11 3 | -------------------------------------------------------------------------------- /tools/ssf/src/lib.rs: -------------------------------------------------------------------------------- 1 | use rust_pixel::pixel_game; 2 | pixel_game!(PixelSsf); -------------------------------------------------------------------------------- /apps/city/src/lib.rs: -------------------------------------------------------------------------------- 1 | use rust_pixel::pixel_game; 2 | pixel_game!(City); 3 | 4 | -------------------------------------------------------------------------------- /apps/petview/src/lib.rs: -------------------------------------------------------------------------------- 1 | use rust_pixel::pixel_game; 2 | pixel_game!(Petview); 3 | -------------------------------------------------------------------------------- /apps/snake/src/lib.rs: -------------------------------------------------------------------------------- 1 | use rust_pixel::pixel_game; 2 | pixel_game!(Snake); 3 | 4 | -------------------------------------------------------------------------------- /apps/tetris/lib/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod ai; 2 | pub mod constant; 3 | pub mod side; 4 | -------------------------------------------------------------------------------- /apps/tetris/src/lib.rs: -------------------------------------------------------------------------------- 1 | use rust_pixel::pixel_game; 2 | pixel_game!(Tetris); 3 | -------------------------------------------------------------------------------- /apps/ginrummy/src/lib.rs: -------------------------------------------------------------------------------- 1 | use rust_pixel::pixel_game; 2 | pixel_game!(GinRummy); 3 | 4 | -------------------------------------------------------------------------------- /apps/template/src/lib.rs: -------------------------------------------------------------------------------- 1 | use rust_pixel::pixel_game; 2 | pixel_game!(Template); 3 | 4 | -------------------------------------------------------------------------------- /assets/lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/lion.png -------------------------------------------------------------------------------- /assets/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/pixel.png -------------------------------------------------------------------------------- /assets/pixel8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/pixel8.ttf -------------------------------------------------------------------------------- /assets/sdq/1.ssf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/sdq/1.ssf -------------------------------------------------------------------------------- /assets/sdq/2.ssf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/sdq/2.ssf -------------------------------------------------------------------------------- /screen-shot/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/a.png -------------------------------------------------------------------------------- /symbols/c64e1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/symbols/c64e1.png -------------------------------------------------------------------------------- /symbols/c64e2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/symbols/c64e2.png -------------------------------------------------------------------------------- /symbols/c64l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/symbols/c64l.png -------------------------------------------------------------------------------- /symbols/c64u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/symbols/c64u.png -------------------------------------------------------------------------------- /test/sdl/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/test/sdl/test.png -------------------------------------------------------------------------------- /test/sym_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/test/sym_test.png -------------------------------------------------------------------------------- /assets/pix/c64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/pix/c64.png -------------------------------------------------------------------------------- /assets/pix/room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/pix/room.png -------------------------------------------------------------------------------- /assets/sdq/ball.ssf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/sdq/ball.ssf -------------------------------------------------------------------------------- /assets/sdq/cube.ssf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/sdq/cube.ssf -------------------------------------------------------------------------------- /assets/sdq/fire.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/sdq/fire.gif -------------------------------------------------------------------------------- /assets/sdq/fire.ssf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/sdq/fire.ssf -------------------------------------------------------------------------------- /assets/sdq/run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/sdq/run.gif -------------------------------------------------------------------------------- /doc/todo.md: -------------------------------------------------------------------------------- 1 | 1. Add physics system 2 | 2. Add animation 3 | 3. Improve the template game 4 | -------------------------------------------------------------------------------- /symbols/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/symbols/symbols.png -------------------------------------------------------------------------------- /test/gltest/to.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/test/gltest/to.png -------------------------------------------------------------------------------- /apps/city/assets/cc1.txt: -------------------------------------------------------------------------------- 1 | ╯ │ 2 | │ 3 | │ 4 | │ 5 | ╮ │ 6 | -------------------------------------------------------------------------------- /apps/city/assets/cc11.txt: -------------------------------------------------------------------------------- 1 | ╭───────╮ 2 | │ │ 3 | │ │ 4 | │ │ 5 | │ │ 6 | -------------------------------------------------------------------------------- /apps/city/assets/cc13.txt: -------------------------------------------------------------------------------- 1 | ────────╮ 2 | │ 3 | │ 4 | │ 5 | ────────╯ 6 | -------------------------------------------------------------------------------- /apps/city/assets/cc15.txt: -------------------------------------------------------------------------------- 1 | ╭───────╮ 2 | │ │ 3 | │ │ 4 | │ │ 5 | ╰───────╯ 6 | -------------------------------------------------------------------------------- /apps/city/assets/cc5.txt: -------------------------------------------------------------------------------- 1 | ╯ │ 2 | │ 3 | │ 4 | │ 5 | ────────╯ 6 | -------------------------------------------------------------------------------- /apps/city/assets/cc7.txt: -------------------------------------------------------------------------------- 1 | │ │ 2 | │ │ 3 | │ │ 4 | │ │ 5 | ╰───────╯ 6 | -------------------------------------------------------------------------------- /apps/city/assets/cc9.txt: -------------------------------------------------------------------------------- 1 | ────────╮ 2 | │ 3 | │ 4 | │ 5 | ╮ │ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc1.txt: -------------------------------------------------------------------------------- 1 | ╯ │ 2 | │ 3 | │ 4 | │ 5 | ╮ │ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc5.txt: -------------------------------------------------------------------------------- 1 | ╯ │ 2 | │ 3 | │ 4 | │ 5 | ────────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc7.txt: -------------------------------------------------------------------------------- 1 | │ │ 2 | │ │ 3 | │ │ 4 | │ │ 5 | ╰───────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc9.txt: -------------------------------------------------------------------------------- 1 | ────────╮ 2 | │ 3 | │ 4 | │ 5 | ╮ │ 6 | -------------------------------------------------------------------------------- /assets/cp437ibm8x8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/cp437ibm8x8.ttf -------------------------------------------------------------------------------- /assets/pix/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/pix/cursor.png -------------------------------------------------------------------------------- /assets/pix/petscii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/pix/petscii.png -------------------------------------------------------------------------------- /assets/pix/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/pix/symbols.png -------------------------------------------------------------------------------- /assets/sdq/dance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/sdq/dance.gif -------------------------------------------------------------------------------- /assets/sdq/dance.ssf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/sdq/dance.ssf -------------------------------------------------------------------------------- /assets/sdq/fire2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/sdq/fire2.gif -------------------------------------------------------------------------------- /assets/sdq/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/sdq/heart.gif -------------------------------------------------------------------------------- /screen-shot/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/demo.png -------------------------------------------------------------------------------- /screen-shot/lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/lion.png -------------------------------------------------------------------------------- /screen-shot/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/logo.png -------------------------------------------------------------------------------- /test/gltest/from.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/test/gltest/from.png -------------------------------------------------------------------------------- /apps/city/assets/cc0.txt: -------------------------------------------------------------------------------- 1 | ╯ ╰─ 2 | 3 | 4 | 5 | ╮ ╭─ 6 | -------------------------------------------------------------------------------- /apps/city/assets/cc10.txt: -------------------------------------------------------------------------------- 1 | ╭───────── 2 | │ 3 | │ 4 | │ 5 | │ ╭─ 6 | -------------------------------------------------------------------------------- /apps/city/assets/cc12.txt: -------------------------------------------------------------------------------- 1 | ────────── 2 | 3 | 4 | 5 | ────────── 6 | -------------------------------------------------------------------------------- /apps/city/assets/cc14.txt: -------------------------------------------------------------------------------- 1 | ╭───────── 2 | │ 3 | │ 4 | │ 5 | ╰───────── 6 | -------------------------------------------------------------------------------- /apps/city/assets/cc2.txt: -------------------------------------------------------------------------------- 1 | │ ╰─ 2 | │ 3 | │ 4 | │ 5 | │ ╭─ 6 | -------------------------------------------------------------------------------- /apps/city/assets/cc3.txt: -------------------------------------------------------------------------------- 1 | │ │ 2 | │ │ 3 | │ │ 4 | │ │ 5 | │ │ 6 | -------------------------------------------------------------------------------- /apps/city/assets/cc4.txt: -------------------------------------------------------------------------------- 1 | ╯ ╰─ 2 | 3 | 4 | 5 | ────────── 6 | -------------------------------------------------------------------------------- /apps/city/assets/cc6.txt: -------------------------------------------------------------------------------- 1 | │ ╰─ 2 | │ 3 | │ 4 | │ 5 | └───────── 6 | -------------------------------------------------------------------------------- /apps/city/assets/cc8.txt: -------------------------------------------------------------------------------- 1 | ────────── 2 | 3 | 4 | 5 | ╮ ╭─ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc11.txt: -------------------------------------------------------------------------------- 1 | ╭───────╮ 2 | │ │ 3 | │ │ 4 | │ │ 5 | │ │ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc13.txt: -------------------------------------------------------------------------------- 1 | ────────╮ 2 | │ 3 | │ 4 | │ 5 | ────────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc15.txt: -------------------------------------------------------------------------------- 1 | ╭───────╮ 2 | │ │ 3 | │ │ 4 | │ │ 5 | ╰───────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc2.txt: -------------------------------------------------------------------------------- 1 | │ ╰─ 2 | │ 3 | │ 4 | │ 5 | │ ╭─ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc3.txt: -------------------------------------------------------------------------------- 1 | │ │ 2 | │ │ 3 | │ │ 4 | │ │ 5 | │ │ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc4.txt: -------------------------------------------------------------------------------- 1 | ╯ ╰─ 2 | 3 | 4 | 5 | ────────── 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc6.txt: -------------------------------------------------------------------------------- 1 | │ ╰─ 2 | │ 3 | │ 4 | │ 5 | └───────── 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc8.txt: -------------------------------------------------------------------------------- 1 | ────────── 2 | 3 | 4 | 5 | ╮ ╭─ 6 | -------------------------------------------------------------------------------- /apps/palette/src/lib.rs: -------------------------------------------------------------------------------- 1 | mod select; 2 | use rust_pixel::pixel_game; 3 | pixel_game!(Palette); 4 | 5 | -------------------------------------------------------------------------------- /screen-shot/ginrummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/ginrummy.png -------------------------------------------------------------------------------- /screen-shot/palette.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/palette.gif -------------------------------------------------------------------------------- /screen-shot/petview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/petview.jpg -------------------------------------------------------------------------------- /screen-shot/redblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/redblack.png -------------------------------------------------------------------------------- /symbols/tui_fix/0053.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/symbols/tui_fix/0053.png -------------------------------------------------------------------------------- /symbols/tui_fix/0177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/symbols/tui_fix/0177.png -------------------------------------------------------------------------------- /symbols/tui_fix/0178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/symbols/tui_fix/0178.png -------------------------------------------------------------------------------- /symbols/tui_fix/0198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/symbols/tui_fix/0198.png -------------------------------------------------------------------------------- /symbols/tui_fix/0199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/symbols/tui_fix/0199.png -------------------------------------------------------------------------------- /symbols/tui_fix/0208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/symbols/tui_fix/0208.png -------------------------------------------------------------------------------- /test/gltest2/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/test/gltest2/output.png -------------------------------------------------------------------------------- /apps/city/assets/cc16.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/1.ssf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/colorblk/assets/1.ssf -------------------------------------------------------------------------------- /apps/colorblk/assets/cc0.txt: -------------------------------------------------------------------------------- 1 | ╯ ╰─ 2 | 3 | 4 | 5 | ╮ ╭─ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc10.txt: -------------------------------------------------------------------------------- 1 | ╭───────── 2 | │ 3 | │ 4 | │ 5 | │ ╭─ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc12.txt: -------------------------------------------------------------------------------- 1 | ────────── 2 | 3 | 4 | 5 | ────────── 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/cc14.txt: -------------------------------------------------------------------------------- 1 | ╭───────── 2 | │ 3 | │ 4 | │ 5 | ╰───────── 6 | -------------------------------------------------------------------------------- /apps/colorblk/src/lib.rs: -------------------------------------------------------------------------------- 1 | use rust_pixel::pixel_game; 2 | pub mod level; 3 | pixel_game!(Colorblk); 4 | 5 | -------------------------------------------------------------------------------- /apps/petview/assets/1.ssf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/petview/assets/1.ssf -------------------------------------------------------------------------------- /apps/template/assets/1.ssf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/template/assets/1.ssf -------------------------------------------------------------------------------- /apps/tetris/assets/back.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/tetris/assets/back.mp3 -------------------------------------------------------------------------------- /assets/pix/symbols_tui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/assets/pix/symbols_tui.png -------------------------------------------------------------------------------- /screen-shot/snake_sdl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/snake_sdl.gif -------------------------------------------------------------------------------- /screen-shot/tedit_sdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/tedit_sdl.png -------------------------------------------------------------------------------- /screen-shot/tedit_term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/tedit_term.png -------------------------------------------------------------------------------- /screen-shot/tetris_sdl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/tetris_sdl.gif -------------------------------------------------------------------------------- /screen-shot/tetris_term.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/tetris_term.gif -------------------------------------------------------------------------------- /screen-shot/tetris_web.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/tetris_web.gif -------------------------------------------------------------------------------- /screen-shot/tower_sdl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/screen-shot/tower_sdl.gif -------------------------------------------------------------------------------- /test/gltest2/texture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/test/gltest2/texture1.png -------------------------------------------------------------------------------- /test/gltest2/texture2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/test/gltest2/texture2.png -------------------------------------------------------------------------------- /apps/colorblk/assets/cc16.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /apps/city/assets/pix/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/city/assets/pix/cursor.png -------------------------------------------------------------------------------- /apps/city/assets/pix/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/city/assets/pix/symbols.png -------------------------------------------------------------------------------- /apps/poker/assets/pix/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/poker/assets/pix/cursor.png -------------------------------------------------------------------------------- /apps/snake/assets/pix/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/snake/assets/pix/cursor.png -------------------------------------------------------------------------------- /apps/snake/assets/sdq/dance.ssf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/snake/assets/sdq/dance.ssf -------------------------------------------------------------------------------- /apps/tower/assets/pix/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/tower/assets/pix/cursor.png -------------------------------------------------------------------------------- /apps/city/build.rs: -------------------------------------------------------------------------------- 1 | include!("../../build_support.rs"); 2 | 3 | fn main() { 4 | setup_rust_pixel_cfg_aliases(); 5 | } -------------------------------------------------------------------------------- /apps/palette/build.rs: -------------------------------------------------------------------------------- 1 | include!("../../build_support.rs"); 2 | 3 | fn main() { 4 | setup_rust_pixel_cfg_aliases(); 5 | } -------------------------------------------------------------------------------- /apps/petview/assets/pix/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/petview/assets/pix/cursor.png -------------------------------------------------------------------------------- /apps/petview/build.rs: -------------------------------------------------------------------------------- 1 | include!("../../build_support.rs"); 2 | 3 | fn main() { 4 | setup_rust_pixel_cfg_aliases(); 5 | } -------------------------------------------------------------------------------- /apps/poker/assets/pix/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/poker/assets/pix/symbols.png -------------------------------------------------------------------------------- /apps/poker/build.rs: -------------------------------------------------------------------------------- 1 | include!("../../build_support.rs"); 2 | 3 | fn main() { 4 | setup_rust_pixel_cfg_aliases(); 5 | } -------------------------------------------------------------------------------- /apps/snake/assets/pix/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/snake/assets/pix/symbols.png -------------------------------------------------------------------------------- /apps/snake/build.rs: -------------------------------------------------------------------------------- 1 | include!("../../build_support.rs"); 2 | 3 | fn main() { 4 | setup_rust_pixel_cfg_aliases(); 5 | } -------------------------------------------------------------------------------- /apps/tetris/assets/pix/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/tetris/assets/pix/cursor.png -------------------------------------------------------------------------------- /apps/tetris/assets/pix/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/tetris/assets/pix/symbols.png -------------------------------------------------------------------------------- /apps/tetris/build.rs: -------------------------------------------------------------------------------- 1 | include!("../../build_support.rs"); 2 | 3 | fn main() { 4 | setup_rust_pixel_cfg_aliases(); 5 | } -------------------------------------------------------------------------------- /apps/tower/assets/pix/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/tower/assets/pix/symbols.png -------------------------------------------------------------------------------- /apps/tower/build.rs: -------------------------------------------------------------------------------- 1 | include!("../../build_support.rs"); 2 | 3 | fn main() { 4 | setup_rust_pixel_cfg_aliases(); 5 | } -------------------------------------------------------------------------------- /apps/ui_demo/assets/pix/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/ui_demo/assets/pix/cursor.png -------------------------------------------------------------------------------- /apps/ui_demo/assets/sdq/dance.ssf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/ui_demo/assets/sdq/dance.ssf -------------------------------------------------------------------------------- /apps/ui_demo/build.rs: -------------------------------------------------------------------------------- 1 | include!("../../build_support.rs"); 2 | 3 | fn main() { 4 | setup_rust_pixel_cfg_aliases(); 5 | } -------------------------------------------------------------------------------- /tools/edit/build.rs: -------------------------------------------------------------------------------- 1 | include!("../../build_support.rs"); 2 | 3 | fn main() { 4 | setup_rust_pixel_cfg_aliases(); 5 | } -------------------------------------------------------------------------------- /tools/ssf/build.rs: -------------------------------------------------------------------------------- 1 | include!("../../build_support.rs"); 2 | 3 | fn main() { 4 | setup_rust_pixel_cfg_aliases(); 5 | } -------------------------------------------------------------------------------- /apps/colorblk/assets/pix/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/colorblk/assets/pix/cursor.png -------------------------------------------------------------------------------- /apps/colorblk/assets/pix/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/colorblk/assets/pix/symbols.png -------------------------------------------------------------------------------- /apps/ginrummy/assets/pix/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/ginrummy/assets/pix/cursor.png -------------------------------------------------------------------------------- /apps/ginrummy/assets/pix/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/ginrummy/assets/pix/symbols.png -------------------------------------------------------------------------------- /apps/ginrummy/build.rs: -------------------------------------------------------------------------------- 1 | include!("../../build_support.rs"); 2 | 3 | fn main() { 4 | setup_rust_pixel_cfg_aliases(); 5 | } -------------------------------------------------------------------------------- /apps/petview/assets/pix/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/petview/assets/pix/symbols.png -------------------------------------------------------------------------------- /apps/template/assets/pix/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/template/assets/pix/cursor.png -------------------------------------------------------------------------------- /apps/template/assets/pix/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/template/assets/pix/symbols.png -------------------------------------------------------------------------------- /apps/template/build.rs: -------------------------------------------------------------------------------- 1 | include!("../../build_support.rs"); 2 | 3 | fn main() { 4 | setup_rust_pixel_cfg_aliases(); 5 | } -------------------------------------------------------------------------------- /apps/ui_demo/assets/pix/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/ui_demo/assets/pix/symbols.png -------------------------------------------------------------------------------- /apps/ui_demo/assets/pix/symbols_tui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zipxing/rust_pixel/HEAD/apps/ui_demo/assets/pix/symbols_tui.png -------------------------------------------------------------------------------- /assets/pix/tower2.pix: -------------------------------------------------------------------------------- 1 | width=3,height=3,texture=255 2 | 0,6,2 32,0,0 1,6,2 3 | 32,0,0 87,107,1 32,0,0 4 | 16,6,2 32,0,0 17,6,2 5 | -------------------------------------------------------------------------------- /apps/poker/wasm/Makefile: -------------------------------------------------------------------------------- 1 | run: build 2 | python3 -m http.server -d . 8080 3 | 4 | build: 5 | wasm-pack build --target web --release 6 | -------------------------------------------------------------------------------- /apps/tower/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | rust_pixel::only_graphics_mode!(); 3 | #[cfg(graphics_mode)] 4 | tower::run() 5 | } 6 | -------------------------------------------------------------------------------- /apps/colorblk/wasm/Makefile: -------------------------------------------------------------------------------- 1 | run: build 2 | python3 -m http.server -d . 8080 3 | 4 | build: 5 | wasm-pack build --target web --release 6 | -------------------------------------------------------------------------------- /apps/palette/wasm/Makefile: -------------------------------------------------------------------------------- 1 | run: build 2 | python3 -m http.server -d . 8080 3 | 4 | build: 5 | wasm-pack build --target web --release 6 | -------------------------------------------------------------------------------- /apps/petview/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | rust_pixel::only_graphics_mode!(); 3 | #[cfg(graphics_mode)] 4 | petview::run() 5 | } 6 | -------------------------------------------------------------------------------- /apps/petview/wasm/Makefile: -------------------------------------------------------------------------------- 1 | run: build 2 | python3 -m http.server -d . 8080 3 | 4 | build: 5 | wasm-pack build --target web --release 6 | -------------------------------------------------------------------------------- /apps/template/wasm/Makefile: -------------------------------------------------------------------------------- 1 | run: build 2 | python3 -m http.server -d . 8080 3 | 4 | build: 5 | wasm-pack build --target web --release 6 | -------------------------------------------------------------------------------- /apps/tower/assets/pix/tower2.pix: -------------------------------------------------------------------------------- 1 | width=3,height=3,texture=255 2 | 0,6,2 32,0,0 1,6,2 3 | 32,0,0 87,107,1 32,0,0 4 | 16,6,2 32,0,0 17,6,2 5 | -------------------------------------------------------------------------------- /assets/pix/block.pix: -------------------------------------------------------------------------------- 1 | width=3,height=3,texture=255 2 | 36,15,2 37,15,2 38,15,2 3 | 52,15,2 53,15,2 54,15,2 4 | 68,15,2 69,15,2 70,15,2 5 | -------------------------------------------------------------------------------- /assets/pix/tower3.pix: -------------------------------------------------------------------------------- 1 | width=3,height=3,texture=255 2 | 25,11,2 32,15,1 25,11,2 3 | 32,15,1 27,11,2 32,15,1 4 | 25,11,2 32,205,0 25,11,2 5 | -------------------------------------------------------------------------------- /apps/palette/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | rust_pixel::only_terminal_mode!(); 3 | #[cfg(not(graphics_mode))] 4 | palette::run() 5 | } 6 | -------------------------------------------------------------------------------- /apps/tower/assets/pix/block.pix: -------------------------------------------------------------------------------- 1 | width=3,height=3,texture=255 2 | 36,15,2 37,15,2 38,15,2 3 | 52,15,2 53,15,2 54,15,2 4 | 68,15,2 69,15,2 70,15,2 5 | -------------------------------------------------------------------------------- /apps/tower/assets/pix/tower3.pix: -------------------------------------------------------------------------------- 1 | width=3,height=3,texture=255 2 | 25,11,2 32,15,1 25,11,2 3 | 32,15,1 27,11,2 32,15,1 4 | 25,11,2 32,205,0 25,11,2 5 | -------------------------------------------------------------------------------- /assets/pix/tower1.pix: -------------------------------------------------------------------------------- 1 | width=3,height=3,texture=255 2 | 108,171,1 32,15,0 123,171,1 3 | 32,15,0 160,92,1 32,15,0 4 | 124,171,1 32,15,0 126,171,1 5 | -------------------------------------------------------------------------------- /apps/tower/assets/pix/tower1.pix: -------------------------------------------------------------------------------- 1 | width=3,height=3,texture=255 2 | 108,171,1 32,15,0 123,171,1 3 | 32,15,0 160,92,1 32,15,0 4 | 124,171,1 32,15,0 126,171,1 5 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/back.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │·│ 3 | │·│ 4 | │·│ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/back.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │·│ 3 | │·│ 4 | │·│ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/back.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │·│ 3 | │·│ 4 | │·│ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/back.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │·│ 3 | │·│ 4 | │·│ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /test/gltest/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | 3 | [package] 4 | name = "gltest" 5 | version = "0.1.0" 6 | edition = "2021" 7 | 8 | [dependencies] 9 | glow = "0.11" 10 | glutin = "0.28" 11 | image = "0.24" 12 | 13 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/53.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │   │ 3 | │Joker│ 4 | │    │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/53.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │   │ 3 | │Joker│ 4 | │    │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/53.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │   │ 3 | │Joker│ 4 | │    │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/53.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │   │ 3 | │Joker│ 4 | │    │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /test/sdl/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | 3 | [package] 4 | name = "sdl" 5 | version = "0.1.0" 6 | edition = "2021" 7 | 8 | [dependencies] 9 | sdl2 = {version = "0.35.2", optional = true, features = ["image", "gfx", "unsafe_textures"]} 10 | -------------------------------------------------------------------------------- /apps/poker/lib/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "poker_lib" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | 10 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/54.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │   │ 3 | │Joker│ 4 | │   │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/54.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │   │ 3 | │Joker│ 4 | │   │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/54.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │   │ 3 | │Joker│ 4 | │   │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/wasm/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | RustPixelGame 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/template/assets/poker/54.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │   │ 3 | │Joker│ 4 | │   │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/wasm/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | RustPixelGame 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/palette/wasm/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | RustPixelGame 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/petview/wasm/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | RustPixelGame 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /apps/template/wasm/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | RustPixelGame 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /test/gltest2/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | 3 | [package] 4 | name = "ggtest" 5 | version = "0.1.0" 6 | edition = "2021" 7 | 8 | [dependencies] 9 | glow = "0.11.0" 10 | glutin = "0.29.0" # 用于窗口模式 11 | image = "0.24.6" # 用于加载图像 12 | bytemuck = "1.12.1" 13 | -------------------------------------------------------------------------------- /test/ttest/Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | 3 | [package] 4 | name = "ttest" 5 | version = "0.1.0" 6 | edition = "2021" 7 | 8 | [dependencies] 9 | unicode-segmentation = "1.2" 10 | # bevy_ecs = "0.10.1" 11 | rand = "0.8" 12 | itertools = "0.10.3" 13 | glam = "0.29" 14 | 15 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/1.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ A │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/2.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 2 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/3.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 3 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/4.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 4 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/5.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 5 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/6.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 6 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/7.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 7 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/8.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 8 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/9.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 9 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/1.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ A │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/10.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 10 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/11.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ J │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/12.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ Q │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/13.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ K │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/14.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ A │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/15.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 2 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/16.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 3 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/17.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 4 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/18.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 5 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/19.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 6 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/2.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 2 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/20.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 7 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/21.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 8 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/22.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 9 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/23.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 10 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/24.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ J │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/25.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ Q │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/26.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ K │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/27.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ A │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/28.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 2 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/29.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 3 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/3.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 3 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/30.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 4 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/31.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 5 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/32.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 6 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/33.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 7 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/34.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 8 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/35.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 9 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/36.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 10 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/37.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ J │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/38.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ Q │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/39.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ K │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/4.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 4 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/40.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ A │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/41.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 2 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/42.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 3 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/43.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 4 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/44.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 5 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/45.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 6 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/46.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 7 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/47.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 8 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/48.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 9 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/49.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 10 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/5.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 5 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/50.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ J │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/51.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ Q │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/52.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ K │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/6.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 6 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/7.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 7 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/8.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 8 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/9.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 9 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/1.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ A │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/10.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 10 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/11.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ J │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/12.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ Q │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/13.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ K │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/14.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ A │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/15.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 2 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/16.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 3 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/17.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 4 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/18.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 5 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/19.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 6 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/2.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 2 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/20.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 7 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/21.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 8 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/22.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 9 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/23.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 10 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/24.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ J │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/25.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ Q │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/26.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ K │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/27.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ A │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/28.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 2 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/29.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 3 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/3.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 3 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/30.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 4 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/31.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 5 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/32.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 6 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/33.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 7 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/34.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 8 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/35.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 9 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/36.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 10 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/37.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ J │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/38.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ Q │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/39.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ K │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/4.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 4 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/40.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ A │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/41.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 2 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/42.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 3 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/43.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 4 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/44.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 5 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/45.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 6 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/46.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 7 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/47.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 8 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/48.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 9 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/49.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 10 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/5.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 5 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/50.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ J │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/51.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ Q │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/52.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ K │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/6.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 6 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/7.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 7 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/8.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 8 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/9.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 9 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/10.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 10 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/11.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ J │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/12.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ Q │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/13.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ K │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/14.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ A │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/15.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 2 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/16.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 3 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/17.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 4 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/18.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 5 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/19.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 6 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/20.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 7 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/21.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 8 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/22.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 9 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/23.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 10 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/24.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ J │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/25.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ Q │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/26.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ K │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/27.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ A │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/28.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 2 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/29.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 3 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/30.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 4 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/31.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 5 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/32.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 6 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/33.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 7 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/34.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 8 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/35.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 9 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/36.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 10 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/37.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ J │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/38.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ Q │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/39.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ K │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/40.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ A │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/41.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 2 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/42.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 3 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/43.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 4 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/44.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 5 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/45.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 6 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/46.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 7 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/47.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 8 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/48.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 9 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/49.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 10 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/50.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ J │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/51.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ Q │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/52.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ K │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/1.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ A │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/10.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 10 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/11.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ J │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/12.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ Q │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/13.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ K │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/14.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ A │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/15.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 2 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/16.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 3 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/17.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 4 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/18.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 5 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/19.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 6 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/2.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 2 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/20.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 7 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/21.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 8 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/22.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 9 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/23.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ 10 │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/24.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ J │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/25.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ Q │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/26.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♥ │ 3 | │ K │ 4 | │ ♥ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/27.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ A │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/28.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 2 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/29.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 3 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/3.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 3 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/30.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 4 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/31.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 5 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/32.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 6 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/33.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 7 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/34.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 8 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/35.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 9 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/36.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ 10 │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/37.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ J │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/38.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ Q │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/39.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♣ │ 3 | │ K │ 4 | │ ♣ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/4.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 4 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/40.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ A │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/41.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 2 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/42.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 3 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/43.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 4 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/44.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 5 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/45.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 6 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/46.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 7 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/47.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 8 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/48.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 9 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/49.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ 10 │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/5.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 5 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/50.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ J │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/51.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ Q │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/52.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♦ │ 3 | │ K │ 4 | │ ♦ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/6.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 6 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/7.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 7 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/8.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 8 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/template/assets/poker/9.txt: -------------------------------------------------------------------------------- 1 | ╭─────╮ 2 | │ ♠ │ 3 | │ 9 │ 4 | │ ♠ │ 5 | ╰─────╯ 6 | -------------------------------------------------------------------------------- /apps/tower/lib/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "tower_lib" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | rust_pixel = { path = "../../..", default-features = false } 10 | 11 | -------------------------------------------------------------------------------- /apps/petview/lib/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "petview_lib" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | rust_pixel = { path = "../../..", default-features = false } 10 | 11 | -------------------------------------------------------------------------------- /apps/template/lib/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "template_lib" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | rust_pixel = { path = "../../..", default-features = false } 10 | 11 | -------------------------------------------------------------------------------- /test/trand.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main() 4 | { 5 | unsigned int rn = 10; 6 | unsigned int r = rn * 214013 + 2531011; 7 | r &= 0x7FFFFFFF; 8 | printf("Hello world %u\n", (r >> 16) & 0x7FFF); 9 | unsigned int a = 2147483648; 10 | printf("%x\n", a); 11 | return 0; 12 | } 13 | 14 | -------------------------------------------------------------------------------- /apps/poker/texas/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "texas_lib" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | itertools = "0.14.0" 10 | log = "0.4.28" 11 | poker_lib = { path = "../../poker/lib" } 12 | -------------------------------------------------------------------------------- /apps/tetris/lib/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "tetris_lib" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | rust_pixel = { path = "../../..", default-features = false } 10 | log = "0.4.28" 11 | 12 | -------------------------------------------------------------------------------- /apps/template/stand-alone/LibCargo.toml.temp: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "template_lib" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | rust_pixel = { path = "$RUST_PIXEL_ROOT", default-features = false } 10 | 11 | -------------------------------------------------------------------------------- /apps/palette/lib/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "palette_lib" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | lazy_static = "1.5.0" 10 | log = "0.4.28" 11 | rust_pixel = { path = "../../.." ,default-features = false } 12 | 13 | -------------------------------------------------------------------------------- /test/trand.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | let mut rn: u32 = 0; 3 | //let mut r = rn.wrapping_mul(214013).wrapping_add(2531011); 4 | for i in 0..1000 { 5 | let r = rn.wrapping_mul(1103515245).wrapping_add(12345); 6 | rn = r & 0x7FFFFFFF; 7 | if i % 2 != 0 { 8 | println!("r={}", rn % 4); 9 | } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /apps/colorblk/ffi/python/pffi.h: -------------------------------------------------------------------------------- 1 | typedef struct rs_TemplateData rs_TemplateData; 2 | 3 | struct rs_TemplateData *rs_TemplateData_new(void); 4 | 5 | void rs_TemplateData_free(struct rs_TemplateData *p_pcs); 6 | 7 | int8_t rs_TemplateData_shuffle(struct rs_TemplateData *p_pcs); 8 | 9 | int8_t rs_TemplateData_next(struct rs_TemplateData *p_pcs, uint8_t *p_out); 10 | -------------------------------------------------------------------------------- /apps/palette/ffi/python/pffi.h: -------------------------------------------------------------------------------- 1 | typedef struct rs_TemplateData rs_TemplateData; 2 | 3 | struct rs_TemplateData *rs_TemplateData_new(void); 4 | 5 | void rs_TemplateData_free(struct rs_TemplateData *p_pcs); 6 | 7 | int8_t rs_TemplateData_shuffle(struct rs_TemplateData *p_pcs); 8 | 9 | int8_t rs_TemplateData_next(struct rs_TemplateData *p_pcs, uint8_t *p_out); 10 | -------------------------------------------------------------------------------- /apps/template/ffi/python/pffi.h: -------------------------------------------------------------------------------- 1 | typedef struct rs_TemplateData rs_TemplateData; 2 | 3 | struct rs_TemplateData *rs_TemplateData_new(void); 4 | 5 | void rs_TemplateData_free(struct rs_TemplateData *p_pcs); 6 | 7 | int8_t rs_TemplateData_shuffle(struct rs_TemplateData *p_pcs); 8 | 9 | int8_t rs_TemplateData_next(struct rs_TemplateData *p_pcs, uint8_t *p_out); 10 | -------------------------------------------------------------------------------- /web-templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | RustPixelGame 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /apps/ginrummy/lib/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "ginrummy_lib" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | itertools = "0.14.0" 10 | rust_pixel = { path = "../../..", default-features = false } 11 | poker_lib = { path = "../../poker/lib" } 12 | 13 | -------------------------------------------------------------------------------- /apps/colorblk/ffi/cbindgen.toml: -------------------------------------------------------------------------------- 1 | language = "C++" 2 | no_includes = false 3 | 4 | [parse] 5 | parse_deps = true 6 | exclude = [ 7 | "sdl2", 8 | "crossterm", 9 | "log", 10 | "itertools", 11 | "log4rs", 12 | "bincode", 13 | "rand", 14 | "serde_json", 15 | "rust_pixel", 16 | ] 17 | 18 | [export] 19 | prefix = "rs_" 20 | 21 | [enum] 22 | rename_variants = "SnakeCase" 23 | -------------------------------------------------------------------------------- /apps/colorblk/ffi/cbindgen_py.toml: -------------------------------------------------------------------------------- 1 | language = "C" 2 | no_includes = true 3 | 4 | [parse] 5 | parse_deps = true 6 | exclude = [ 7 | "sdl2", 8 | "crossterm", 9 | "log", 10 | "itertools", 11 | "log4rs", 12 | "bincode", 13 | "rand", 14 | "serde_json", 15 | "rust_pixel", 16 | ] 17 | 18 | [export] 19 | prefix = "rs_" 20 | 21 | [enum] 22 | rename_variants = "SnakeCase" 23 | -------------------------------------------------------------------------------- /apps/palette/ffi/cbindgen.toml: -------------------------------------------------------------------------------- 1 | language = "C++" 2 | no_includes = false 3 | 4 | [parse] 5 | parse_deps = true 6 | exclude = [ 7 | "sdl2", 8 | "crossterm", 9 | "log", 10 | "itertools", 11 | "log4rs", 12 | "bincode", 13 | "rand", 14 | "serde_json", 15 | "rust_pixel", 16 | ] 17 | 18 | [export] 19 | prefix = "rs_" 20 | 21 | [enum] 22 | rename_variants = "SnakeCase" 23 | -------------------------------------------------------------------------------- /apps/palette/ffi/cbindgen_py.toml: -------------------------------------------------------------------------------- 1 | language = "C" 2 | no_includes = true 3 | 4 | [parse] 5 | parse_deps = true 6 | exclude = [ 7 | "sdl2", 8 | "crossterm", 9 | "log", 10 | "itertools", 11 | "log4rs", 12 | "bincode", 13 | "rand", 14 | "serde_json", 15 | "rust_pixel", 16 | ] 17 | 18 | [export] 19 | prefix = "rs_" 20 | 21 | [enum] 22 | rename_variants = "SnakeCase" 23 | -------------------------------------------------------------------------------- /apps/poker/ffi/cbindgen.toml: -------------------------------------------------------------------------------- 1 | language = "C++" 2 | no_includes = false 3 | 4 | [parse] 5 | parse_deps = true 6 | exclude = [ 7 | "sdl2", 8 | "crossterm", 9 | "log", 10 | "itertools", 11 | "log4rs", 12 | "bincode", 13 | "rand", 14 | "serde_json", 15 | "rust_pixel", 16 | ] 17 | 18 | [export] 19 | prefix = "rs_" 20 | 21 | [enum] 22 | rename_variants = "SnakeCase" 23 | -------------------------------------------------------------------------------- /apps/poker/ffi/cbindgen_py.toml: -------------------------------------------------------------------------------- 1 | language = "C" 2 | no_includes = true 3 | 4 | [parse] 5 | parse_deps = true 6 | exclude = [ 7 | "sdl2", 8 | "crossterm", 9 | "log", 10 | "itertools", 11 | "log4rs", 12 | "bincode", 13 | "rand", 14 | "serde_json", 15 | "rust_pixel", 16 | ] 17 | 18 | [export] 19 | prefix = "rs_" 20 | 21 | [enum] 22 | rename_variants = "SnakeCase" 23 | -------------------------------------------------------------------------------- /apps/template/ffi/cbindgen.toml: -------------------------------------------------------------------------------- 1 | language = "C++" 2 | no_includes = false 3 | 4 | [parse] 5 | parse_deps = true 6 | exclude = [ 7 | "sdl2", 8 | "crossterm", 9 | "log", 10 | "itertools", 11 | "log4rs", 12 | "bincode", 13 | "rand", 14 | "serde_json", 15 | "rust_pixel", 16 | ] 17 | 18 | [export] 19 | prefix = "rs_" 20 | 21 | [enum] 22 | rename_variants = "SnakeCase" 23 | -------------------------------------------------------------------------------- /apps/template/ffi/cbindgen_py.toml: -------------------------------------------------------------------------------- 1 | language = "C" 2 | no_includes = true 3 | 4 | [parse] 5 | parse_deps = true 6 | exclude = [ 7 | "sdl2", 8 | "crossterm", 9 | "log", 10 | "itertools", 11 | "log4rs", 12 | "bincode", 13 | "rand", 14 | "serde_json", 15 | "rust_pixel", 16 | ] 17 | 18 | [export] 19 | prefix = "rs_" 20 | 21 | [enum] 22 | rename_variants = "SnakeCase" 23 | -------------------------------------------------------------------------------- /apps/template/ffi/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "template_ffi" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | rust_pixel = { path = "../../..", default-features = false, features = ["base"] } 10 | template_lib = { path = "../lib" } 11 | 12 | [lib] 13 | crate-type=["staticlib","cdylib"] 14 | -------------------------------------------------------------------------------- /apps/palette/ffi/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "palette_ffi" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | rust_pixel = { path = "../../../rust-pixel", default-features = false, features = ["base"] } 10 | palette_lib = { path = "../lib" } 11 | 12 | [lib] 13 | crate-type=["staticlib","cdylib"] 14 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/14.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 1,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/27.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 1,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/40.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 1,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/5.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 53,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/6.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 54,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/7.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 55,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/8.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,94,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 56,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/9.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 57,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/ffi/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "colorblk_ffi" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | rust_pixel = { path = "../../../rust-pixel", default-features = false, features = ["base"] } 10 | colorblk_lib = { path = "../lib" } 11 | 12 | [lib] 13 | crate-type=["staticlib","cdylib"] 14 | -------------------------------------------------------------------------------- /apps/colorblk/lib/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "colorblk_lib" 3 | version = "0.1.0" 4 | edition = "2021" 5 | 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 | 8 | [dependencies] 9 | rayon = "1.11.0" 10 | rand = "0.9.2" 11 | log = "0.4.28" 12 | serde = { version = "1.0.226", features = ["derive"] } 13 | rust_pixel = { path = "../../..", default-features = false } 14 | 15 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/14.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 1,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/27.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 1,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/40.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 1,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/5.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 53,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/6.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 54,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/7.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 55,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/8.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,94,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 56,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/9.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 57,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/10.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,0 32,15,0 49,94,0 48,94,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/11.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 74,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/12.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 81,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/13.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 75,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/14.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 1,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/15.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 50,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/16.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 51,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/17.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 52,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/18.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 53,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/19.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 54,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/20.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 55,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/21.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 56,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/22.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 57,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/23.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 49,88,1 48,88,1 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/24.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 10,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/25.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 17,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/26.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 11,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/27.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 1,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/28.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 50,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/29.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 51,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/30.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 52,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/31.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 53,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/32.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 54,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/33.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 55,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/34.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 56,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/35.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 57,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/36.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 49,94,1 48,94,1 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/37.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 10,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/38.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 17,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/39.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 11,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/40.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 1,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/41.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 50,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/42.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 51,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/43.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 52,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/44.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 53,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,1 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/45.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 54,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/46.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 55,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/47.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 56,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/48.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 57,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/49.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 49,88,1 48,88,1 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/5.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 53,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/50.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 10,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/51.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 17,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/6.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 54,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/7.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 55,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/8.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,94,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 56,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/poker/assets/poker/9.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 57,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/template/assets/poker/14.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 1,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/template/assets/poker/27.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 1,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/template/assets/poker/40.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 1,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/template/assets/poker/5.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 53,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/template/assets/poker/6.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 54,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/template/assets/poker/7.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 55,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/template/assets/poker/8.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,94,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 56,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/template/assets/poker/9.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 57,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/10.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,0 32,15,0 49,94,0 48,94,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/11.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 74,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/12.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 81,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/13.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 75,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/15.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 50,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/16.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 51,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/17.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 52,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/18.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 53,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/19.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 54,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/20.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 55,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/21.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 56,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/22.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 57,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/23.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 49,88,1 48,88,1 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/24.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 10,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/25.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 17,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/26.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 11,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/28.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 50,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/29.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 51,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/30.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 52,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/31.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 53,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/32.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 54,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/33.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 55,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/34.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 56,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/35.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 57,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/36.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 49,94,1 48,94,1 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/37.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 10,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/38.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 17,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/39.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 11,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/41.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 50,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/42.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 51,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/43.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 52,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/44.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 53,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,1 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/45.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 54,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/46.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 55,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/47.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 56,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/48.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 57,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/49.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 49,88,1 48,88,1 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/50.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 10,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/colorblk/assets/poker/51.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 90,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 17,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 90,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/10.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,0 32,15,0 49,94,0 48,94,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/11.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 74,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/12.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 81,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/13.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 65,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 75,94,0 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 65,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/15.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 50,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/16.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 51,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/17.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 52,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/18.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 53,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/19.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 54,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/20.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 55,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/21.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 56,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/22.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 57,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/23.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 49,88,1 48,88,1 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/24.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 10,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/25.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 17,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/26.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 83,88,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 11,88,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 83,88,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/28.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 50,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/29.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 51,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/30.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 52,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/31.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 53,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | -------------------------------------------------------------------------------- /apps/ginrummy/assets/poker/32.pix: -------------------------------------------------------------------------------- 1 | width=7,height=7,texture=255 2 | 85,8,1 67,8,1 67,8,1 67,8,1 67,8,1 67,8,1 73,8,1 3 | 66,8,1 88,94,1 32,15,1 32,0,0 32,0,0 32,0,0 66,8,1 4 | 66,8,1 32,15,1 32,15,1 32,15,1 32,15,1 32,0,0 66,8,1 5 | 66,8,1 32,15,1 32,15,1 54,94,1 32,0,0 32,0,0 66,8,1 6 | 66,8,1 32,0,0 32,0,0 32,15,1 32,0,0 32,15,0 66,8,1 7 | 66,8,1 32,0,0 32,0,0 32,0,0 32,0,0 88,94,1 66,8,1 8 | 74,8,1 64,8,1 64,8,1 64,8,1 64,8,1 64,8,1 75,8,1 9 | --------------------------------------------------------------------------------