Final-Bomber  0.1
Bomberman/Dynablaster remake in C# using XNA.
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Pages
Teleporter.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6 using FBLibrary.Core.BaseEntities;
7 using Microsoft.Xna.Framework;
8 
9 namespace FBServer.Core.Entities
10 {
12  {
13  public Teleporter(Point cellPosition) : base(cellPosition)
14  {
15 
16  }
17 
18  public override void Destroy()
19  {
20  throw new NotImplementedException();
21  }
22 
23  public override void Remove()
24  {
25  throw new NotImplementedException();
26  }
27  }
28 }
Teleporter(Point cellPosition)
Definition: Teleporter.cs:13