Skip to content

Instantly share code, notes, and snippets.

@StuWookie
StuWookie / CardClass.cs
Last active August 9, 2018 01:01
CSV to Dictionary - All credit to Sloane Kelly
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Card
{
public int CardID { get; set; }
public int CardLvl { get; set; }
public bool CardPlayed { get; set; }