You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basically, it would be cool to have a way to flag certain procs / variables so that you indicate that they must be overridden in derivate paths, eg:
/datum/food
virtual var/taste = null
/datum/food/proc/effect()
virtual
/datum/food/soup <-- This should throw an error like "Not implementing proc: 'effect' "
taste = "Sour"
/datum/food/spicynoodles <-- This should throw an error like "Not implementing variable: 'taste' "
/datum/food/spicynoodles/effect()
set_on_fire(usr)
The text was updated successfully, but these errors were encountered:
Basically, it would be cool to have a way to flag certain procs / variables so that you indicate that they must be overridden in derivate paths, eg:
The text was updated successfully, but these errors were encountered: