using System;

namespace GameCreator.Runtime.Common
{
    public interface IReflectionMember
    {
        public Type Type { get; }
    }
}