source:
2012/27/DenisZ/TheDungeonGame/TheDungeonGame/TheDungeonGame/EntityTemplates.cs
@
3549
Revision 3549, 454 bytes checked in by dezhidki, 10 years ago (diff) |
---|
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | using Jypeli; |
6 | |
7 | namespace Entity |
8 | { |
9 | public class TestEntity : EntityBase |
10 | { |
11 | public TestEntity(TheDungeonGame game, Vector pos, Vector size, Shape shape) |
12 | : base(game, pos, size, shape) |
13 | { |
14 | } |
15 | |
16 | public override void init() |
17 | { |
18 | //throw new NotImplementedException(); |
19 | } |
20 | } |
21 | } |
Note: See TracBrowser
for help on using the repository browser.