Exemplo n.º 1
0
        public static bool HasScene <TAnnotation>()
            where TAnnotation : class, IMessage <TAnnotation>, new()
        {
            var property = new TAnnotation().GetType().GetProperty(k_SceneObjectField);

            return(property != null);
        }
Exemplo n.º 2
0
        public static bool HasLoadingState <TAnnotation>()
            where TAnnotation : class, IMessage <TAnnotation>, new()
        {
            var property = new TAnnotation().GetType().GetProperty(k_LoadingStateField);

            return(property != null);
        }