From 844049b0d4aecb25fc480fae37111e8aebac6438 Mon Sep 17 00:00:00 2001 From: David Vierra Date: Sat, 11 Jul 2015 11:33:24 -1000 Subject: [PATCH] Add mimeformats.py to support drag and drop --- src/mcedit2/util/mimeformats.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/mcedit2/util/mimeformats.py diff --git a/src/mcedit2/util/mimeformats.py b/src/mcedit2/util/mimeformats.py new file mode 100644 index 0000000..4fc5e36 --- /dev/null +++ b/src/mcedit2/util/mimeformats.py @@ -0,0 +1,10 @@ +""" + mimeformats +""" +from __future__ import absolute_import, division, print_function, unicode_literals +import logging + +log = logging.getLogger(__name__) + +class MimeFormats(object): + MapItem = "application/x-mcedit-mapitem" \ No newline at end of file