Skip to content

Instantly share code, notes, and snippets.

@sandrockcstm
sandrockcstm / Bestiary.cs
Created September 13, 2017 22:44
Console RPG created by sandrockcstm - https://repl.it/JMY2/247
using System;
using System.Collections;
namespace Bestiary
{
public class Monster
{
public string Name { get; set; }
public double Hp { get; set; }
@sandrockcstm
sandrockcstm / Bestiary.cs
Created July 10, 2017 07:41
Console RPG created by sandrockcstm - https://repl.it/JMY2/134
using System;
using System.Collections;
namespace Bestiary
{
class Slime
{
public string Name { get; set; } = "Slime";
public int Hp { get; set; } = 10;