-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscene_real.c
30 lines (25 loc) · 1.09 KB
/
scene_real.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// *************************************************************************
// scene_real.c
// This is a component of Acid Rain, Pre ALPHA non-distribution version
//
// -By Insomnia (Steaphan Greene) (Copyright 2002 Steaphan Greene)
// ([email protected])
// No waranty stated or implied, I am not responsible for any damage
// caused directly or indirectly by this software.
// Permision granted for use/distribution/modification by anyone,
// provided this header remains intact, and modified versions are marked
// as so immediately below this header.
// Products utilizing the code or methods within may be distributed
// freely along with this licence, but any sales for profit of such products
// must have the author's permission, and may be subject to a royaltee fee.
// *************************************************************************
#include <stdio.h>
#include <stdlib.h>
#include "scene.h"
extern scene *scene_list[];
extern SceneID csnum;
scene *generate_scene_real(SceneID id) {
return scene_list[id];
}
void init_scenes_real(void) {
}