Exemplo n.º 1
0
        public static bool Deserialize(string input, out Physical obj)
        {
            Exception exception = null;

            return(Deserialize(input, out obj, out exception));
        }
Exemplo n.º 2
0
        public static bool LoadFromFile(string fileName, out Physical obj)
        {
            Exception exception = null;

            return(LoadFromFile(fileName, out obj, out exception));
        }
Exemplo n.º 3
0
 public ItemProperties()
 {
     _physical   = new Physical();
     _stackable  = new Stackable();
     _appearance = new Appearance();
 }