mirror of
https://github.com/izzy2lost/Diddy-Kong-Racing.git
synced 2026-06-19 01:16:26 -07:00
Updated with new tools and texture generation
This commit is contained in:
@@ -5,9 +5,10 @@ class ConfigRange:
|
||||
self.size = size
|
||||
self.type = type.lower()
|
||||
self.properties = properties
|
||||
self.start = -1
|
||||
|
||||
def get_range_string(self, start):
|
||||
return "{:06x}".format(start) + '-' + "{:06x}".format(start + self.size)
|
||||
def get_range_string(self):
|
||||
return "{:06x}".format(self.start) + '-' + "{:06x}".format(self.start + self.size)
|
||||
|
||||
def __repr__(self):
|
||||
return "{:06x}".format(self.size) + ', ' + self.type + ', ' + str(self.properties)
|
||||
|
||||
Reference in New Issue
Block a user