Add Lists to ColMng and add methds to ColMng
This commit is contained in:
parent
6fd3fd21c4
commit
332f405cf5
1 changed files with 17 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
using System;
|
||||
using Microsoft.VisualBasic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
@ -8,6 +10,20 @@ namespace ZoFo.GameCore.GameManagers.CollisionManager
|
|||
{
|
||||
public class CollisionManager
|
||||
{
|
||||
public List<Collection> CollisionComponent;
|
||||
public List<Collection> TriggerComponent;
|
||||
|
||||
public void UpdatePositions()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public void GetObjectInArea(Rectangle area)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue