forked from hunter688/SpawnerBubaku
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.cpp
51 lines (50 loc) · 931 Bytes
/
config.cpp
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
class CfgPatches
{
class SpawnerBubaku
{
units[]= {};
weapons[]={};
requiredVersion=0.1;
requiredAddons[]=
{
"DZ_Data",
"DZ_Scripts"
};
};
};
class CfgMods
{
class SpawnerBubaku
{
dir = "SpawnerBubaku";
picture = "";
action = "";
hideName = 0;
hidePicture = 0;
name = "SpawnerBubaku";
credits = "Hunterz";
author = "Hunterz";
authorID = "0";
version = "1.0";
extra = 0;
type = "mod";
class defs
{
class gameScriptModule
{
value = "";
files[] = {"SpawnerBubaku/scripts/3_Game"};
};
class worldScriptModule
{
value = "";
files[] = {"SpawnerBubaku/Scripts/4_World"};
};
class missionScriptModule
{
value="";
files[]={"SpawnerBubaku/Scripts/5_Mission"};
};
};
};
};