Skip to content

Commit

Permalink
Put everything under BSD 2-Clause License.
Browse files Browse the repository at this point in the history
  • Loading branch information
Oberon00 committed Jun 25, 2013
1 parent 90fb912 commit 63b4aa3
Show file tree
Hide file tree
Showing 119 changed files with 502 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CMakelists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
# This file is subject to the terms of the BSD 2-Clause License.
# See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

cmake_minimum_required(VERSION 2.6)
project(JadeEngine)

Expand Down
3 changes: 3 additions & 0 deletions LICENSE-template.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
This file is subject to the terms of the BSD 2-Clause License.
See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause
23 changes: 23 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Jade Game Engine -- Copyright (c) 2012--2013, Christian Neumüller
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
Title: Jade Engine README
Author: Christian Neumüller


JadeEngine
==========

Expand Down Expand Up @@ -73,4 +72,6 @@ two options:
command line).


> (C) Christian Neumüller 2012 -- 2013
> Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
> This file is subject to the terms of the BSD 2-Clause License.
> See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause.
6 changes: 5 additions & 1 deletion base.jd/mkzip.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
# This file is subject to the terms of the BSD 2-Clause License.
# See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

from zipfile import ZipFile, ZIP_DEFLATED
from os import path
import os
Expand All @@ -24,4 +28,4 @@ def main():
zip_file.write(input)

if __name__ == '__main__':
main()
main()
4 changes: 4 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
# This file is subject to the terms of the BSD 2-Clause License.
# See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

set(SVC_HEADERS
svc/Mainloop.hpp
svc/StateManager.hpp
Expand Down
4 changes: 4 additions & 0 deletions src/Logfile.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "Logfile.hpp"

#include "encoding.hpp"
Expand Down
4 changes: 4 additions & 0 deletions src/Logfile.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#pragma once

#include <boost/format/format_fwd.hpp>
Expand Down
4 changes: 4 additions & 0 deletions src/LuaUtils.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "luaUtils.hpp"

#include "svc/FileSystem.hpp"
Expand Down
4 changes: 4 additions & 0 deletions src/LuaUtils.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef LUA_UTILS_HPP_INCLUDED
#define LUA_UTILS_HPP_INCLUDED LUA_UTILS_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/MapInfo.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "MapInfo.hpp"

#include "base64.hpp"
Expand Down
4 changes: 4 additions & 0 deletions src/MapInfo.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef MAP_INFO_HPP_INCLUDED
#define MAP_INFO_HPP_INCLUDED MAP_INFO_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/State.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef STATE_HPP_INCLUDED
#define STATE_HPP_INCLUDED STATE_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/Tilemap.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "Tilemap.hpp"

#include "sfUtil.hpp"
Expand Down
4 changes: 4 additions & 0 deletions src/Tilemap.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef TILEMAP_HPP_INCLUDED
#define TILEMAP_HPP_INCLUDED TILEMAP_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/TransformGroup.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "TransformGroup.hpp"

#include <SFML/Graphics/RenderTarget.hpp>
Expand Down
4 changes: 4 additions & 0 deletions src/TransformGroup.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef TRANSFORM_GROUP_HPP_INCLUDED
#define TRANSFORM_GROUP_HPP_INCLUDED TRANSFORM_GROUP_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/WeakRef.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef WEAK_REF_HPP_INCLUDED
#define WEAK_REF_HPP_INCLUDED WEAK_REF_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/base64.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "base64.hpp"

#include <array>
Expand Down
4 changes: 4 additions & 0 deletions src/base64.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef BASE64_HPP_INCLUDED
#define BASE64_HPP_INCLUDED BASE64_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/cmdline.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef CMDLINE_HPP_INCLUDED
#define CMDLINE_HPP_INCLUDED CMDLINE_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/collision/Collisions.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "Collisions.hpp"

#include "Logfile.hpp"
Expand Down
4 changes: 4 additions & 0 deletions src/collision/Collisions.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef COLLISIONS_HPP_INCLUDED
#define COLLISIONS_HPP_INCLUDED COLLISIONS_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/collision/RectCollideableGroup.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "RectCollideableGroup.hpp"

#include "comp/PositionComponent.hpp"
Expand Down
4 changes: 4 additions & 0 deletions src/collision/RectCollideableGroup.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef RECT_COLLIDEABLE_GROUP_HPP_INCLUDED
#define RECT_COLLIDEABLE_GROUP_HPP_INCLUDED RECT_COLLIDEABLE_GROUP_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/collision/TileCollideableGroup.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "TileCollideableGroup.hpp"

#include "comp/TileCollisionComponent.hpp"
Expand Down
4 changes: 4 additions & 0 deletions src/collision/TileCollideableGroup.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef TILE_COLLIDEABLE_GROUP_HPP_INCLUDED
#define TILE_COLLIDEABLE_GROUP_HPP_INCLUDED TILE_COLLIDEABLE_GROUP_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/comp/PositionComponent.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "PositionComponent.hpp"

#include "compsys/BasicMetaComponent.hpp"
Expand Down
4 changes: 4 additions & 0 deletions src/comp/PositionComponent.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef POSITION_COMPONENT_HPP_INCLUDED
#define POSITION_COMPONENT_HPP_INCLUDED POSITION_COMPONENT_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/comp/RectCollisionComponent.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "RectCollisionComponent.hpp"

RectCollisionComponent::RectCollisionComponent()
Expand Down
4 changes: 4 additions & 0 deletions src/comp/RectCollisionComponent.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef RECTCOLLISIONCOMPONENT_HPP_INCLUDED
#define RECTCOLLISIONCOMPONENT_HPP_INCLUDED RECTCOLLISIONCOMPONENT_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/comp/TileCollisionComponent.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "TileCollisionComponent.hpp"

#include "collision/TileCollideableGroup.hpp"
Expand Down
4 changes: 4 additions & 0 deletions src/comp/TileCollisionComponent.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef TILE_COLLISION_COMPONENT_HPP_INCLUDED
#define TILE_COLLISION_COMPONENT_HPP_INCLUDED TILE_COLLISION_COMPONENT_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/comp/TilePositionComponent.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "TilePositionComponent.hpp"

#include "compsys/Entity.hpp"
Expand Down
4 changes: 4 additions & 0 deletions src/comp/TilePositionComponent.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef TILEPOSITION_HPP_INCLUDED
#define TILEPOSITION_HPP_INCLUDED TILEPOSITION_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/compsys/BasicMetaComponent.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef BASIC_META_COMPONENT_HPP_INCLUDED
#define BASIC_META_COMPONENT_HPP_INCLUDED BASIC_META_COMPONENT_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/compsys/Component.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "Component.hpp"
#include <luabind/class.hpp>

Expand Down
4 changes: 4 additions & 0 deletions src/compsys/Component.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef COMPONENT_HPP_INCLUDED
#define COMPONENT_HPP_INCLUDED COMPONENT_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/compsys/ComponentRegistry.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "ComponentRegistry.hpp"

#include "compsys/MetaComponent.hpp"
Expand Down
4 changes: 4 additions & 0 deletions src/compsys/ComponentRegistry.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef COMPONENT_REGISTRY_HPP_INCLUDED
#define COMPONENT_REGISTRY_HPP_INCLUDED COMPONENT_REGISTRY_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/compsys/Entity.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "Entity.hpp"

#include "Logfile.hpp"
Expand Down
4 changes: 4 additions & 0 deletions src/compsys/Entity.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef ENTITY_HPP_INCLUDED
#define ENTITY_HPP_INCLUDED ENTITY_HPP_INCLUDED

Expand Down
4 changes: 4 additions & 0 deletions src/compsys/MetaComponent.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#include "compsys/MetaComponent.hpp"

#include "ComponentRegistry.hpp"
Expand Down
4 changes: 4 additions & 0 deletions src/compsys/MetaComponent.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
// This file is subject to the terms of the BSD 2-Clause License.
// See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

#ifndef META_COMPONENT_HPP_INCLUDED
#define META_COMPONENT_HPP_INCLUDED META_COMPONENT_HPP_INCLUDED

Expand Down
7 changes: 7 additions & 0 deletions src/createComponent.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# Part of the Jade Engine -- Copyright (c) Christian Neumüller 2012--2013
# This file is subject to the terms of the BSD 2-Clause License.
# See LICENSE.txt or http://opensource.org/licenses/BSD-2-Clause

import string
import sys
from os.path import exists
Expand Down
Loading

0 comments on commit 63b4aa3

Please sign in to comment.