1
0

Trying a second commit. - Don

This commit is contained in:
thedonaldloughry 2016-01-29 21:44:30 -05:00
parent 578eadd3ee
commit 66b8c265a1
12 changed files with 111 additions and 0 deletions

View File

@ -0,0 +1,15 @@
using UnityEngine;
using System.Collections;
public class Character : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
}

View File

@ -0,0 +1,12 @@
fileFormatVersion: 2
guid: 04615787dccc1d642a748a80392b5b82
timeCreated: 1454120443
licenseType: Free
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,15 @@
using UnityEngine;
using System.Collections;
public class GameManager : MonoBehaviour {
void Start () {
}
// Update is called once per frame
void Update () {
}
}

View File

@ -0,0 +1,12 @@
fileFormatVersion: 2
guid: a9f83bb10cb22ff4d98a2ce12f695f16
timeCreated: 1454121212
licenseType: Free
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,15 @@
using UnityEngine;
using System.Collections;
public class PlayerCharacter : MonoBehaviour {
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
}

View File

@ -0,0 +1,12 @@
fileFormatVersion: 2
guid: 0f706b0d72aa58641b482aeb96fbdfe8
timeCreated: 1454120463
licenseType: Free
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,18 @@
using UnityEngine;
using System.Collections;
namespace Game_Utils
{
public interface ISceneObject
{
// Called by the GameBrain on scene switch.
void Initialize();
// Called by the GameBrain's Update function.
void ObjectUpdate();
}
public static class Utilities
{
}
}

View File

@ -0,0 +1,12 @@
fileFormatVersion: 2
guid: cba653c7df71b3141bd84232c2d61186
timeCreated: 1454120355
licenseType: Free
MonoImporter:
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.