Skip to content

Commit b63e3db

Browse files
committed
Initialized with files.
1 parent a87d1f4 commit b63e3db

8 files changed

Lines changed: 122 additions & 0 deletions

File tree

ModularSystem.meta

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ModularSystem/Editor.meta

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// Editor script of modular system
2+
// Author: Heavyskymobile - Rozx
3+
// Date: 2016-10-13
4+
// Version 0.1
5+
6+
7+
8+
using UnityEngine;
9+
using UnityEditor;
10+
using System.Collections.Generic;
11+
12+
namespace ModularSystem{
13+
14+
[CustomEditor(typeof(ModularSystem))]
15+
public class ModularEditor : Editor{
16+
17+
}
18+
}

ModularSystem/Editor/ModularEditor.cs.meta

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ModularSystem/ModularClass.cs

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
// Defines modular classes here
2+
// Author: Heavyskymobile - Rozx
3+
// Date: 2016-10-13
4+
// Version 0.1
5+
6+
using UnityEngine;
7+
using System.Collections;
8+
9+
namespace ModularSystem{
10+
11+
public class ModularClass : MonoBehaviour {
12+
13+
// Use this for initialization
14+
void Start () {
15+
16+
}
17+
18+
// Update is called once per frame
19+
void Update () {
20+
21+
}
22+
}
23+
}

ModularSystem/ModularClass.cs.meta

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ModularSystem/ModularSystem.cs

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// Main script of the modular system
2+
// Author: Heavyskymobile - Rozx
3+
// Date: 2016-10-13
4+
// Version 0.1
5+
6+
7+
using UnityEngine;
8+
using System.Collections;
9+
10+
11+
12+
namespace ModularSystem{
13+
14+
[ExecuteInEditMode]
15+
public class ModularSystem : MonoBehaviour {
16+
17+
// Use this for initialization
18+
void Start () {
19+
20+
}
21+
22+
// Update is called once per frame
23+
void Update () {
24+
25+
}
26+
}
27+
}

ModularSystem/ModularSystem.cs.meta

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)