AddFiles
This commit is contained in:
parent
72638e3666
commit
2b52b10a72
8 changed files with 64 additions and 0 deletions
8
ZoFo/GameCore/GameObjects/Bullet.cs
Normal file
8
ZoFo/GameCore/GameObjects/Bullet.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
using System;
|
||||
|
||||
namespace ZoFo;
|
||||
|
||||
public class Bullet : Projectile
|
||||
{
|
||||
|
||||
}
|
8
ZoFo/GameCore/GameObjects/Collectable.cs
Normal file
8
ZoFo/GameCore/GameObjects/Collectable.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
using System;
|
||||
|
||||
namespace ZoFo;
|
||||
|
||||
public class Collectable : Entity
|
||||
{
|
||||
|
||||
}
|
8
ZoFo/GameCore/GameObjects/Enemy.cs
Normal file
8
ZoFo/GameCore/GameObjects/Enemy.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
using System;
|
||||
|
||||
namespace ZoFo;
|
||||
|
||||
public class Enemy : LivingEntity
|
||||
{
|
||||
|
||||
}
|
8
ZoFo/GameCore/GameObjects/Entity.cs
Normal file
8
ZoFo/GameCore/GameObjects/Entity.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
using System;
|
||||
|
||||
namespace ZoFo;
|
||||
|
||||
public class Entity
|
||||
{
|
||||
|
||||
}
|
8
ZoFo/GameCore/GameObjects/LivingEntity.cs
Normal file
8
ZoFo/GameCore/GameObjects/LivingEntity.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
using System;
|
||||
|
||||
namespace ZoFo;
|
||||
|
||||
public class LivingEntity : Entity
|
||||
{
|
||||
|
||||
}
|
8
ZoFo/GameCore/GameObjects/Player.cs
Normal file
8
ZoFo/GameCore/GameObjects/Player.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
using System;
|
||||
|
||||
namespace ZoFo;
|
||||
|
||||
public class Player : LivingEntity
|
||||
{
|
||||
|
||||
}
|
8
ZoFo/GameCore/GameObjects/Projectile.cs
Normal file
8
ZoFo/GameCore/GameObjects/Projectile.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
using System;
|
||||
|
||||
namespace ZoFo;
|
||||
|
||||
public class Projectile : LivingEntity
|
||||
{
|
||||
|
||||
}
|
8
ZoFo/GameCore/GameObjects/Rock.cs
Normal file
8
ZoFo/GameCore/GameObjects/Rock.cs
Normal file
|
@ -0,0 +1,8 @@
|
|||
using System;
|
||||
|
||||
namespace ZoFo;
|
||||
|
||||
public class Rock : Projectile
|
||||
{
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue