Changeset 121 for cpp/frams/vm/classes
- Timestamp:
- 02/08/14 06:00:41 (11 years ago)
- Location:
- cpp/frams/vm/classes
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/vm/classes/3dobject.cpp
r109 r121 1 // This file is a part of the Framsticks GDK. 2 // Copyright (C) 2002-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. 3 // Refer to http://www.framsticks.com/ for further information. 4 1 5 #include <frams/util/3d.h> 2 6 #include "3dobject.h" -
cpp/frams/vm/classes/3dobject.h
r109 r121 1 // This file is a part of the Framsticks GDK. 2 // Copyright (C) 2002-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. 3 // Refer to http://www.framsticks.com/ for further information. 4 1 5 #ifndef _3DOBJECT_H_ 2 6 #define _3DOBJECT_H_ -
cpp/frams/vm/classes/collectionobj.cpp
r109 r121 1 // This file is a part of the Framsticks GDK library.2 // Copyright (C) 2002-201 1Szymon Ulatowski. See LICENSE.txt for details.1 // This file is a part of the Framsticks GDK. 2 // Copyright (C) 2002-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. 3 3 // Refer to http://www.framsticks.com/ for further information. 4 4 … … 77 77 if (v) delete v; 78 78 } 79 //nie tak spektakularny jak rasowe bugi roku ale tez idiotyczny :>80 //wszystko przez to ze poczatkowo bylo tylko uzywane w destruktorze...81 79 data.clear(); 82 80 } -
cpp/frams/vm/classes/collectionobj.h
r109 r121 1 // This file is a part of the Framsticks GDK library.2 // Copyright (C) 2002-201 1Szymon Ulatowski. See LICENSE.txt for details.1 // This file is a part of the Framsticks GDK. 2 // Copyright (C) 2002-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. 3 3 // Refer to http://www.framsticks.com/ for further information. 4 4 … … 73 73 SString serialize() const; 74 74 static void p_new(void*,ExtValue*args,ExtValue*ret) 75 {ret->setObject(ExtObject(&par,new DictionaryObject));} //NOWY KANDYDAT NA BUGA ROKU!!!75 {ret->setObject(ExtObject(&par,new DictionaryObject));} 76 76 static DictionaryObject* fromObject(const ExtObject& v); 77 77 ExtObject makeObject() {return ExtObject(&par,this);}
Note: See TracChangeset
for help on using the changeset viewer.