Skip to content

Instantly share code, notes, and snippets.

View doublespoiler's full-sized avatar

Skylan Lew doublespoiler

View GitHub Profile
@doublespoiler
doublespoiler / MapGenerator.cs
Created February 6, 2017 05:00
Could not load type RogueSharp.Map
using RLNET;
using RogueSharpTut.Core;
using RogueSharp;
namespace RogueSharpTut.Systems
{
public class MapGenerator
{
private readonly int _width;
private readonly int _height;
@doublespoiler
doublespoiler / DungeonMap.cs
Created February 6, 2017 05:00
Could not load type RogueSharp.Map
using RogueSharp;
using RLNET;
namespace RogueSharpTut.Core
{
//Custom DungeonMap class that extends the base RogueSharp map (class Name : Map)
public class DungeonMap : Map
{
//The Draw method will be called each time the map is updated
@doublespoiler
doublespoiler / Game.cs
Created February 6, 2017 04:59
Could not load type RogueSharp.Map
using RLNET;
using RogueSharpTut.Core;
using RogueSharpTut.Systems;
using RogueSharp;
namespace RogueSharpTut
{
public class Game