public static Item Create(SelectTexture2dHandler handler) => new Item(null, handler);
 private Item(Texture2D texture, SelectTexture2dHandler texHandler)
 {
     this.texture    = texture;
     this.texHandler = texHandler;
 }