You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
366 B
19 lines
366 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 sequence will execute when the game starts playing.")]
|
||
10 years ago
|
public class GameStarted : EventHandler
|
||
10 years ago
|
{
|
||
|
protected virtual void Start()
|
||
|
{
|
||
|
ExecuteSequence();
|
||
|
}
|
||
|
}
|
||
|
}
|