If you enjoy working on compilers (or other types of graphics tools) and want to help build something that native Linux games can benefit from, check out the following issues:
Fixed:
| #!/bin/bash | |
| set -ex | |
| function commit_sdk() { | |
| rm -rf Readme.txt steam redistributable_bin | |
| unzip ../steamworks_sdk_1$1.zip | |
| # Changelog | |
| mv sdk/Readme.txt . |
| using System; | |
| using System.IO; | |
| using System.Collections.Generic; | |
| using Microsoft.Xna.Framework; | |
| using Microsoft.Xna.Framework.Graphics; | |
| class Program : Game | |
| { | |
| static void Main(string[] args) | |
| { |
If you enjoy working on compilers (or other types of graphics tools) and want to help build something that native Linux games can benefit from, check out the following issues:
Fixed:
| /* FNA MultiWindow Example | |
| * Written by Ethan "flibitijibibo" Lee | |
| * https://www.flibitijibibo.com/ | |
| * | |
| * Released under public domain. | |
| * No warranty implied; use at your own risk. | |
| */ | |
| using System; | |
| using SDL2; |
| /* gcc -g -o titlebar titlebar.c `sdl2-config --cflags --libs` | |
| * SDL_VIDEODRIVER=wayland ./titlebar | |
| */ | |
| #include <SDL.h> | |
| int main(int argc, char **argv) | |
| { | |
| SDL_Window *window; | |
| SDL_Renderer *renderer; |
| using System; | |
| using System.Reflection; | |
| static class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| MethodInfo[] methods = typeof(SDL2.SDL).GetMethods(BindingFlags.Public | BindingFlags.Static); | |
| foreach (MethodInfo m in methods) | |
| { |
| #!/bin/bash | |
| run_builds() { | |
| cd ~/libraries/$1 | |
| cd flibitBuild | |
| make -j8 | |
| cd ../flibitBuildWin32 | |
| make -j8 | |
| cd ../flibitBuildWin64 | |
| make -j8 |
| #!/bin/bash | |
| set -ex | |
| cd "`dirname "$0"`" | |
| # Start with the Kick environment | |
| curl -LO https://github.com/flibitijibibo/MonoKickstart/archive/master.zip | |
| unzip -j master.zip MonoKickstart-master/precompiled/* | |
| rm master.zip kick.bin.osx kick.bin.x86_64.debug System.Xml.Linq.dll |
| #!/bin/bash | |
| # Axiom Verge FNA Update and Also Work Around A Bunch of Spec Violations Script | |
| # Written by Ethan "flibitijibibo" Lee | |
| # | |
| # Put this in the Axiom Verge directory and run it. Not much to see here. | |
| # | |
| # FNA patch, if anyone wants it: | |
| # https://gist.github.com/flibitijibibo/ffdd7c6fe32b9846a83807dab24be8fd | |
| set -ex |