﻿using OnlineMaps;
using UnityEngine;

namespace HutongGames.PlayMaker.Actions
{
    [System.Serializable]
    public class DrawingElementWrapper : Object
    {
        public DrawingElement drawingElement;

        public DrawingElementWrapper(DrawingElement drawingElement)
        {
            this.drawingElement = drawingElement;
        }
    }
}