Inheritance: SnoEntry
Exemplo n.º 1
0
        public CacheGizmoEntry(GizmoEntry entry)
        {
            InternalName = entry.InternalName;
            var pluginGizmoType = (PluginGizmoType)entry.ObjectType;

            _objectType     = (GizmoType)Enum.Parse(typeof(GizmoType), pluginGizmoType.ToString());
            GizmotargetType = entry.GizmotargetType;
        }
Exemplo n.º 2
0
        public CacheGizmoEntry(GizmoEntry entry) : base(entry.SnoId)
        {
            InternalName = entry.InternalName;
            var pluginGizmoType = (PluginGizmoType)entry.ObjectType;

            _objectType     = (GizmoType)Enum.Parse(typeof(GizmoType), pluginGizmoType.ToString());
            GizmotargetType = entry.GizmotargetType;
            InteractRange   = entry.InteractRange;
            CollisionRadius = entry.CollisionRadius;
        }
Exemplo n.º 3
0
 public CacheGizmoEntry(GizmoEntry entry)
     : base(entry.SnoId)
 {
     InternalName = entry.InternalName;
     var pluginGizmoType = (PluginGizmoType)entry.ObjectType;
     _objectType = (GizmoType) Enum.Parse(typeof (GizmoType), pluginGizmoType.ToString());
     GizmotargetType = entry.GizmotargetType;
     InteractRange = entry.InteractRange;
     CollisionRadius = entry.CollisionRadius;
 }