﻿namespace Oni.Dae
{
    internal class EffectSurface
    {
        public EffectSurface()
        {
        }

        public EffectSurface(Image initFrom)
        {
            InitFrom = initFrom;
        }

        public EffectParameter DeclaringParameter { get; set; }
        public Image InitFrom { get; set; }
    }
}
