33 lines
540 B
C#
33 lines
540 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
namespace ZoFo.GameCore.GameObjects.Entities
|
|
{
|
|
public abstract class Entity : GameObject
|
|
{
|
|
public int Id { get; set; }
|
|
public void CollisionComponent()
|
|
{
|
|
|
|
}
|
|
|
|
public void AnimationComponent()
|
|
{
|
|
|
|
}
|
|
|
|
public void UpdateLogic()
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
//вектор
|
|
//вилосити
|
|
//поситион
|
|
//текстура
|