• Fichier: Vector2.h
  • Path: /dungeon_ascii/DungeonASCII/Vector2.h
  • File size: 139 bytes
  • MIME-type: text/x-c
  • Charset: utf-8
 
Retour
#pragma once

#ifndef _VECTOR2_STRUCT_H_INCLUDED
#define _VECTOR2_STRUCT_H_INCLUDED

struct Vector2
{
	int x;
	int y;
};

#endif