You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
558 B
29 lines
558 B
/* |
|
* ===================================================================================== |
|
* |
|
* Filename: scene.cpp |
|
* |
|
* Description: |
|
* |
|
* Version: 1.0 |
|
* Created: 03/24/2014 04:10:57 PM |
|
* Revision: none |
|
* Compiler: gcc |
|
* |
|
* Author: YOUR NAME (), |
|
* Organization: |
|
* |
|
* ===================================================================================== |
|
*/ |
|
#include <stdlib.h> |
|
|
|
#include "scene.h" |
|
#include "game.h" |
|
|
|
namespace vtk { |
|
|
|
void Scene::link(Game* game) { |
|
linkedGame = game; |
|
} |
|
|
|
}
|
|
|