summaryrefslogtreecommitdiff
path: root/src/ints/wrap.py
blob: c8a8c6d3eac78ade065f64ad7cc9966c22082799 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Wrapped(object):
    __slots__ = ('_value')
    name = 'tmwa::ints::wrapped::Wrapped'
    enabled = True

    def __init__(self, value):
        self._value = value

    def to_string(self):
        return self._value['_value']

    # tests are in src/mmo/ids.py instead
    tests = []