projects
/
physics.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
finished changes to deps directory building
[physics.git]
/
Entities
/
Entity.cpp
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
1
#include "Entity.h"
2
#include "../Vector2.h"
3
4
#include <iostream>
5
6
/// ***** Public Class Methods *****
7
8
Entity::Entity(const Vector2& pos)
9
: position(pos), velocity(0,0)
10
{
11
12
}
13
Entity::~Entity()
14
{
15
16
}