mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-22 18:15:27 -04:00
5082106a98
git-svn-id: svn://localhost@32 8062f311-0dae-4547-b526-b8ab9ac864a5
17 lines
558 B
C++
17 lines
558 B
C++
#include "GDL/Object.h"
|
|
#include "GDL/ExpressionInstruction.h"
|
|
#include "GDL/RuntimeScene.h"
|
|
#include "GDL/ObjectsConcerned.h"
|
|
#include "TextObject.h"
|
|
|
|
double TextObject::ExpOpacity( const RuntimeScene * scene, ObjectsConcerned * objectsConcerned, ObjSPtr obj1, ObjSPtr obj2, const ExpressionInstruction & exprInstruction )
|
|
{
|
|
return opacity;
|
|
}
|
|
|
|
double TextObject::ExpAngle( const RuntimeScene * scene, ObjectsConcerned * objectsConcerned, ObjSPtr obj1, ObjSPtr obj2, const ExpressionInstruction & exprInstruction )
|
|
{
|
|
return angle;
|
|
}
|
|
|