diff --git a/Engine/source/cinterface/c_simobjectInterface.cpp b/Engine/source/cinterface/c_simobjectInterface.cpp index 4c018c0ab..1c687af28 100644 --- a/Engine/source/cinterface/c_simobjectInterface.cpp +++ b/Engine/source/cinterface/c_simobjectInterface.cpp @@ -28,16 +28,6 @@ DefineNewEngineMethod(SimObject, RegisterObject, bool, (),,"") return object->registerObject(); } -DefineNewEngineMethod(SimObject, GetField, String, (String fieldName, String arrayIndex),, "") -{ - return object->getDataField(StringTable->insert(fieldName), StringTable->insert(arrayIndex)); -} - -DefineNewEngineMethod(SimObject, SetField, void, (String fieldName, String arrayIndex, String value),, "") -{ - object->setDataField(StringTable->insert(fieldName), StringTable->insert(arrayIndex), StringTable->insert(value)); -} - DefineNewEngineMethod(SimObject, CopyFrom, void, (SimObject* parent),, "") { if (parent) @@ -66,4 +56,4 @@ DefineNewEngineMethod(SimObject, InspectPreApply, void, (), , "") DefineNewEngineMethod(SimObject, InspectPostApply, void, (), , "") { object->inspectPostApply(); -} \ No newline at end of file +}