A game framework written with osu! in mind.
at master 23 lines 597 B view raw
1# Autodetect text files and ensure that we normalise their 2# line endings to lf internally. When checked out they may 3# use different line endings. 4* text=auto 5 6# Check out with crlf (Windows) line endings 7*.sln text eol=crlf 8*.csproj text eol=crlf 9*.cs text diff=csharp eol=crlf 10*.resx text eol=crlf 11*.vsixmanifest text eol=crlf 12packages.config text eol=crlf 13App.config text eol=crlf 14*.bat text eol=crlf 15*.cmd text eol=crlf 16*.snippet text eol=crlf 17 18# Check out with lf (UNIX) line endings 19*.sh text eol=lf 20.gitignore text eol=lf 21.gitattributes text eol=lf 22*.md text eol=lf 23.travis.yml text eol=lf