#include <assert.h>
#include <stdio.h>
#include <string.h>
#include "leaf.h"

Leaf::Leaf(int p_row, int p_col)
{
   row = p_row;
   col = p_col;
   piece = '*';
}
