├── .gitignore ├── LICENSE.txt ├── Logos ├── Icon-large.png ├── Icon-small.png ├── Text-banner.png ├── Text-large.png ├── Text-new.pdn └── Text-small.png ├── README.md ├── SonicSharp.sln └── SonicSharp ├── Bitwise.cs ├── Block.cs ├── Content ├── Content.mgcb ├── Sprites │ └── Players │ │ └── Sonic │ │ ├── balancing1.png │ │ ├── balancing2.png │ │ ├── braking.png │ │ ├── death.png │ │ ├── idle.png │ │ ├── jumping.png │ │ ├── pushing.png │ │ ├── running.png │ │ ├── turnaround.png │ │ └── walking.png └── Stages │ └── TestZone │ ├── TestZone.sharp-stage │ └── TileMap.png ├── GameObject.cs ├── GameWindow.cs ├── Icon.bmp ├── Icon.ico ├── Input.cs ├── Player.cs ├── Players └── Sonic.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SonicSharp.csproj ├── Sprite.cs ├── Stage.cs ├── Tile.cs ├── app.config ├── app.manifest └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Logos/Icon-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/Logos/Icon-large.png -------------------------------------------------------------------------------- /Logos/Icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/Logos/Icon-small.png -------------------------------------------------------------------------------- /Logos/Text-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/Logos/Text-banner.png -------------------------------------------------------------------------------- /Logos/Text-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/Logos/Text-large.png -------------------------------------------------------------------------------- /Logos/Text-new.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/Logos/Text-new.pdn -------------------------------------------------------------------------------- /Logos/Text-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/Logos/Text-small.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/README.md -------------------------------------------------------------------------------- /SonicSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp.sln -------------------------------------------------------------------------------- /SonicSharp/Bitwise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Bitwise.cs -------------------------------------------------------------------------------- /SonicSharp/Block.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Block.cs -------------------------------------------------------------------------------- /SonicSharp/Content/Content.mgcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Content/Content.mgcb -------------------------------------------------------------------------------- /SonicSharp/Content/Sprites/Players/Sonic/balancing1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Content/Sprites/Players/Sonic/balancing1.png -------------------------------------------------------------------------------- /SonicSharp/Content/Sprites/Players/Sonic/balancing2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Content/Sprites/Players/Sonic/balancing2.png -------------------------------------------------------------------------------- /SonicSharp/Content/Sprites/Players/Sonic/braking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Content/Sprites/Players/Sonic/braking.png -------------------------------------------------------------------------------- /SonicSharp/Content/Sprites/Players/Sonic/death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Content/Sprites/Players/Sonic/death.png -------------------------------------------------------------------------------- /SonicSharp/Content/Sprites/Players/Sonic/idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Content/Sprites/Players/Sonic/idle.png -------------------------------------------------------------------------------- /SonicSharp/Content/Sprites/Players/Sonic/jumping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Content/Sprites/Players/Sonic/jumping.png -------------------------------------------------------------------------------- /SonicSharp/Content/Sprites/Players/Sonic/pushing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Content/Sprites/Players/Sonic/pushing.png -------------------------------------------------------------------------------- /SonicSharp/Content/Sprites/Players/Sonic/running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Content/Sprites/Players/Sonic/running.png -------------------------------------------------------------------------------- /SonicSharp/Content/Sprites/Players/Sonic/turnaround.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Content/Sprites/Players/Sonic/turnaround.png -------------------------------------------------------------------------------- /SonicSharp/Content/Sprites/Players/Sonic/walking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Content/Sprites/Players/Sonic/walking.png -------------------------------------------------------------------------------- /SonicSharp/Content/Stages/TestZone/TestZone.sharp-stage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Content/Stages/TestZone/TestZone.sharp-stage -------------------------------------------------------------------------------- /SonicSharp/Content/Stages/TestZone/TileMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Content/Stages/TestZone/TileMap.png -------------------------------------------------------------------------------- /SonicSharp/GameObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/GameObject.cs -------------------------------------------------------------------------------- /SonicSharp/GameWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/GameWindow.cs -------------------------------------------------------------------------------- /SonicSharp/Icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Icon.bmp -------------------------------------------------------------------------------- /SonicSharp/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Icon.ico -------------------------------------------------------------------------------- /SonicSharp/Input.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Input.cs -------------------------------------------------------------------------------- /SonicSharp/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Player.cs -------------------------------------------------------------------------------- /SonicSharp/Players/Sonic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Players/Sonic.cs -------------------------------------------------------------------------------- /SonicSharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Program.cs -------------------------------------------------------------------------------- /SonicSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SonicSharp/SonicSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/SonicSharp.csproj -------------------------------------------------------------------------------- /SonicSharp/Sprite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Sprite.cs -------------------------------------------------------------------------------- /SonicSharp/Stage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Stage.cs -------------------------------------------------------------------------------- /SonicSharp/Tile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/Tile.cs -------------------------------------------------------------------------------- /SonicSharp/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/app.config -------------------------------------------------------------------------------- /SonicSharp/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/app.manifest -------------------------------------------------------------------------------- /SonicSharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Radfordhound/Sonic-Sharp/HEAD/SonicSharp/packages.config --------------------------------------------------------------------------------