error C2664: 'irr::scene::ISceneManager::addHillPlaneMesh' : cannot convert parameter 3 from 'irr::core::dimension2d<T>' to 'const irr::core::dimension2d<T> &'
with
[
T=irr::s32
]
and
[
T=irr::u32
]
Reason: cannot convert from 'irr::core::dimension2d<T>' to 'const irr::core::dimension2d<T>'
with
[
T=irr::s32
]
and
[
T=irr::u32
]
No user-defined-conversion operator available that can perform this conversion, or the operator cannot be called
Code: Select all
IAnimatedMesh *plane = smgr->addHillPlaneMesh("test",dimension2d<f32>(120,30),dimension2d<s32>(20,20));
error C2259: 'MyEventReceiver' : cannot instantiate abstract class
due to following members:
'bool irr::IEventReceiver::OnEvent(const irr::SEvent &)' : is abstract
c:\program files\microsoft visual studio 8\vc\include\ieventreceiver.h(256) : see declaration of 'irr::IEventReceiver::OnEvent'
Code: Select all
MyEventReceiver receiver;