This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
core: fix uninitialised WorldEntity members.
legacy
Sam Hocevar
sam
13 years ago
parent
10e2385062
commit
233ad8bb89
1 changed files
with
10 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+10
-0
src/worldentity.cpp
+ 10
- 0
src/worldentity.cpp
View File
@@ -26,6 +26,16 @@ namespace lol
WorldEntity::WorldEntity()
{
position = 0;
rotation = 0;
velocity = 0;
bbox[0] = bbox[1] = 0;
mousepos = 0;
mousebuttons = 0;
pressed = 0;
clicked = 0;
released = 0;
}
WorldEntity::~WorldEntity()
Write
Preview
Loading…
Cancel
Save