-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEvent.cs
More file actions
34 lines (27 loc) · 689 Bytes
/
Event.cs
File metadata and controls
34 lines (27 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
using System;
using System.Collections.Generic;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Storage;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Media;
using ProjectGreco.GameObjects;
using ProjectGreco.Levels;
namespace ProjectGreco
{
public class Event
{
public bool Happened = false;
public int index = 0;
public Event(int indexOfDialouge)
{
index = indexOfDialouge;
}
public virtual bool Update()
{
return false;
}
}
}