dissertation / mainCode / Logger.cs
Logger.cs
Raw
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

[Serializable]
public class Logger
{

    public List<GameResults> resultsList = new List<GameResults>();
    
    
}