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.
20 lines
425 B
20 lines
425 B
using UnityEngine; |
|
using System.Collections; |
|
using Fungus; |
|
|
|
// An empty template room class to use as a starting point for your own room scripts. |
|
// Copy this script to your game folder, rename it and add it to your room object. |
|
public class RoomTemplate : Room |
|
{ |
|
// Properties go here |
|
|
|
// Called when the player enters the room |
|
void OnEnter() |
|
{ |
|
} |
|
|
|
// Called when the player leaves the room |
|
void OnLeave() |
|
{ |
|
} |
|
}
|
|
|