You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
242 B
14 lines
242 B
local WIT, core = ...
|
|
|
|
function core.Module(name, category)
|
|
local self = {
|
|
Name = name,
|
|
DisplayName = core.GetString(name),
|
|
Category = category
|
|
}
|
|
|
|
function self.Draw(frame)
|
|
end
|
|
|
|
return self
|
|
end
|
|
|