So I have this function:
Code:
SetProperty(ent, property, const property_value[]) {
//...
}
So I have another function which creates the entity and sets the property for it using SetProperty, now I want to increment the property value by 1 each time the entity function is called, so how could I do that?
Code:
SetProperty(ent, 1, property); // property ++