Hipension
 
 
No information given.
Recent Activity
13.2 hrs on record
last played on May 29
618 hrs on record
last played on May 28
5.8 hrs on record
last played on May 26
Jakey Dec 12, 2022 @ 3:32am 
my big sister :) ONEE-SAN
76561199137330018 Nov 28, 2021 @ 1:06am 
nice wallpaper
Кошечкин Sep 13, 2021 @ 3:55am 
Ты такой тупень, я ♥♥♥♥♥♥
mode: ☠ナpainナ☠ キdeath Mar 19, 2019 @ 3:55am 
──────▄▌▐▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀​▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▌
───▄▄██▌█ +REP +REP +REP +REP +REP +REP +REP +REP +REP +REP
▄▄▄▌▐██▌█ +REP +REP +REP +REP +REP +REP +REP +REP +REP +REP
███████▌█▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄​▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▌
▀(@)▀▀▀▀▀▀▀(@)(@)▀▀▀▀▀▀▀▀▀▀▀▀▀​▀▀▀▀(@)(@)▀▀▀▀▀▀▀▀▀​▀▀▀(@)▀
[Low*HP] BoGGuN Feb 6, 2019 @ 10:37am 
+rep my best friend
Дойчен зольдатен Nov 24, 2018 @ 6:25am 
#include "stdafx.h"
#include<SFML/Graphics.hpp>
using namespace sf;
int main()
{
RenderWindow okno(VideoMode(250, 250), "Window");
Texture t;
t.loadFromFile("man.png");
Sprite s;
s.setTexture(t);
s.setPosition(50, 50);
while (okno.isOpen()) {
Event event;
while (okno.pollEvent(event)) {
if (Keyboard::isKeyPressed(Keyboard::A)) {
s.move(-1, 0);
}
if (Keyboard::isKeyPressed(Keyboard::D)) {
s.move(1, 0);
}
if (Keyboard::isKeyPressed(Keyboard::W)) {
s.move(0, -1);
}
if (Keyboard::isKeyPressed(Keyboard::S)) {
s.move(0, 1);
}
if (event.type == Event::Closed)
okno.close();
}
okno.clear();
okno.draw(s);
okno.display();
}
return 0;
}