mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 08:21:24 +02:00
fix eve's use of the now disallowed copy constructor
This commit is contained in:
parent
c26a05ff97
commit
7e766eb351
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ int main(int argc, const char* argv[]) {
|
||||||
pthread_create(&receiveAgentDataThread, NULL, receiveAgentData, NULL);
|
pthread_create(&receiveAgentDataThread, NULL, receiveAgentData, NULL);
|
||||||
|
|
||||||
// create an AvatarData object, "eve"
|
// create an AvatarData object, "eve"
|
||||||
AvatarData eve = AvatarData();
|
AvatarData eve;
|
||||||
|
|
||||||
// move eve away from the origin
|
// move eve away from the origin
|
||||||
// pick a random point inside a 10x10 grid
|
// pick a random point inside a 10x10 grid
|
||||||
|
|
Loading…
Reference in a new issue