20 lines
384 B
20 lines
384 B
10 years ago
|
using UnityEngine;
|
||
|
using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Fungus
|
||
|
{
|
||
|
[EventHandlerInfo("",
|
||
10 years ago
|
"Game Started",
|
||
10 years ago
|
"The block will execute when the game starts playing.")]
|
||
10 years ago
|
[AddComponentMenu("")]
|
||
10 years ago
|
public class GameStarted : EventHandler
|
||
10 years ago
|
{
|
||
|
protected virtual void Start()
|
||
|
{
|
||
10 years ago
|
ExecuteBlock();
|
||
10 years ago
|
}
|
||
|
}
|
||
|
}
|