Added initial tools support, minor refactor to sidebar actions

This commit is contained in:
2019-11-27 12:28:43 -06:00
parent 2b1ff35a34
commit 8869ddb3de
17 changed files with 193 additions and 116 deletions

9
lib/tools/sell_entity.rb Normal file
View File

@@ -0,0 +1,9 @@
class IMICRTS
class SellEntity < Tool
attr_accessor :entity
def setup
@entity = nil
end
end
end