Apparently, the virtual keyword doesn't do anything for custom functions.
Code: Select all
class BaseClass : Actor
{
virtual void BaseFunction()//virtual keyword doesn't do anything apparently?
{
}
}
class SubClass : BaseClass
{
override void BaseFunction()//gives error that no virtual function of this name exists
{
}
}