mirror of
https://github.com/evennia/evennia.git
synced 2026-03-19 14:26:30 +01:00
Really basic proof-of-concept scripthandler.py for review and discussion. This should illustrate my basic idea about script support. I think this will be a very elegant solution to the scripting situation. This will be filled out in the coming days and will hopefully make more and more sense as I tie it in. Database changes are likely, make sure to keep an eye on the commit logs. Also edited some svn:ignore props and added a placeholder for the basicobject script.
This commit is contained in:
parent
e6d7c51771
commit
27c0e7a873
2 changed files with 40 additions and 0 deletions
5
scripts/basicobject.py
Normal file
5
scripts/basicobject.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
"""
|
||||
This will be the base object type/interface that all scripts are derived from by
|
||||
default. It will have the necessary outline for developers to sub-class and override.
|
||||
"""
|
||||
test = 123
|
||||
Loading…
Add table
Add a link
Reference in a new issue