mirror of
https://github.com/Relintai/voxelman.git
synced 2024-11-14 10:17:20 +01:00
Added a .gitignore, and the basic module setup stuff.
This commit is contained in:
parent
c89fe9d7f0
commit
9106cae56c
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
.import
|
||||||
|
*.d
|
||||||
|
*.o
|
||||||
|
*.meta
|
||||||
|
*.obj
|
||||||
|
*.pyc
|
||||||
|
*.bc
|
5
SCsub
Normal file
5
SCsub
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
Import('env')
|
||||||
|
|
||||||
|
env.add_source_files(env.modules_sources,"register_types.cpp")
|
||||||
|
|
||||||
|
|
11
config.py
Normal file
11
config.py
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
|
||||||
|
|
||||||
|
def can_build(env, platform):
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
def configure(env):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
10
register_types.cpp
Normal file
10
register_types.cpp
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
#include "register_types.h"
|
||||||
|
|
||||||
|
void register_voxelman_types() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
void unregister_voxelman_types() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
7
register_types.h
Normal file
7
register_types.h
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
#ifndef VOXELMAN_REGISTER_TYPES_H
|
||||||
|
#define VOXELMAN_REGISTER_TYPES_H
|
||||||
|
|
||||||
|
void register_voxelman_types();
|
||||||
|
void unregister_voxelman_types();
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user